Lines Matching refs:__stream
89 fputc_unlocked (int __c, FILE *__stream) in fputc_unlocked() argument
91 return _IO_putc_unlocked (__c, __stream); in fputc_unlocked()
99 putc_unlocked (int __c, FILE *__stream) in putc_unlocked() argument
101 return _IO_putc_unlocked (__c, __stream); in putc_unlocked()
116 getline (char **__lineptr, size_t *__n, FILE *__stream) in getline() argument
118 return __getdelim (__lineptr, __n, '\n', __stream); in getline()
126 __NTH (feof_unlocked (FILE *__stream)) in __NTH() argument
128 return _IO_feof_unlocked (__stream); in __NTH()
133 __NTH (ferror_unlocked (FILE *__stream)) in __NTH() argument
135 return _IO_ferror_unlocked (__stream); in __NTH()
150 FILE *__stream = (stream); \
155 int __c = _IO_getc_unlocked (__stream); \
174 FILE *__stream = (stream); \
178 if (_IO_putc_unlocked (*__ptr++, __stream) == EOF) \