Lines Matching refs:stream
39 internal_setent (FILE **stream) in internal_setent() argument
43 if (*stream == NULL) in internal_setent()
45 *stream = __nss_files_fopen ("/etc/aliases"); in internal_setent()
47 if (*stream == NULL) in internal_setent()
51 rewind (*stream); in internal_setent()
74 get_next_alias (FILE *stream, const char *match, struct aliasent *result, in libc_hidden_def()
100 line = __fgets_unlocked (first_unused, room_left, stream); in libc_hidden_def()
271 ch = __getc_unlocked (stream); in libc_hidden_def()
279 ungetc (ch, stream); in libc_hidden_def()
304 line = __fgets_unlocked (first_unused, room_left, stream); in libc_hidden_def()
349 status = get_next_alias (data->stream, NULL, result, buffer, buflen, in _nss_files_getaliasent_r()
364 FILE *stream = NULL; in libc_hidden_def() local
373 status = internal_setent (&stream); in libc_hidden_def()
381 status = get_next_alias (stream, name, result, buffer, buflen, errnop); in libc_hidden_def()
384 fclose (stream); in libc_hidden_def()