Lines Matching defs:buffer
60 * wherein the field pointers would be set to areas in the buffer if
61 * need be. instring and buffer should be separate areas.
64 str2authattr(const char *instr, int lenstr, void *ent, char *buffer, int buflen)
73 if (instr != buffer)
74 (void) strncpy(buffer, instr, buflen);
80 if (buffer[lenstr] == '\n')
81 buffer[lenstr] = '\0';
87 auth->name = _strtok_escape(buffer, sep, &last);
116 _getauthattr(authstr_t *result, char *buffer, int buflen, int *h_errnop)
121 NSS_XbyY_INIT(&arg, result, buffer, buflen, str2authattr);
130 _getauthnam(const char *name, authstr_t *result, char *buffer, int buflen,
136 NSS_XbyY_INIT(&arg, result, buffer, buflen, str2authattr);