Lines Matching refs:__stream
91 fputc_unlocked (int __c, FILE *__stream) in fputc_unlocked() argument
93 return __putc_unlocked_body (__c, __stream); in fputc_unlocked()
101 putc_unlocked (int __c, FILE *__stream) in putc_unlocked() argument
103 return __putc_unlocked_body (__c, __stream); in putc_unlocked()
118 getline (char **__lineptr, size_t *__n, FILE *__stream) in getline() argument
120 return __getdelim (__lineptr, __n, '\n', __stream); in getline()
128 __NTH (feof_unlocked (FILE *__stream)) in __NTH() argument
130 return __feof_unlocked_body (__stream); in __NTH()
135 __NTH (ferror_unlocked (FILE *__stream)) in __NTH() argument
137 return __ferror_unlocked_body (__stream); in __NTH()
152 FILE *__stream = (stream); \
157 int __c = getc_unlocked (__stream); \
176 FILE *__stream = (stream); \
180 if (putc_unlocked (*__ptr++, __stream) == EOF) \