Searched refs:__fp (Results 1 – 5 of 5) sorted by relevance
/libio/ |
A D | libio.h | 186 extern int _IO_getc (FILE *__fp); 187 extern int _IO_putc (int __c, FILE *__fp); 188 extern int _IO_feof (FILE *__fp) __THROW; 189 extern int _IO_ferror (FILE *__fp) __THROW; 191 extern int _IO_peekc_locked (FILE *__fp); 226 extern wint_t _IO_getwc (FILE *__fp); 227 extern wint_t _IO_putwc (wchar_t __wc, FILE *__fp); 241 #define _IO_fwide(__fp, __mode) \ argument 245 if ((__fp)->_mode == 0) \ 247 (__fp)->_mode = -1; \ [all …]
|
A D | iofopncook.c | 154 _IO_init_internal (&cfile->__fp.file, 0); in _IO_cookie_init() 155 _IO_JUMPS (&cfile->__fp) = &_IO_cookie_jumps; in _IO_cookie_init() 160 _IO_new_file_init_internal (&cfile->__fp); in _IO_cookie_init() 162 _IO_mask_flags (&cfile->__fp.file, read_write, in _IO_cookie_init() 165 cfile->__fp.file._flags2 |= _IO_FLAGS2_NEED_LOCK; in _IO_cookie_init() 170 cfile->__fp.file._fileno = -2; in _IO_cookie_init() 209 new_f->cfile.__fp.file._lock = &new_f->lock; in _IO_fopencookie() 214 return (FILE *) &new_f->cfile.__fp; in _IO_fopencookie()
|
A D | iolibio.h | 56 #define _IO_fseek(__fp, __offset, __whence) \ argument 57 (_IO_seekoff_unlocked (__fp, __offset, __whence, _IOS_INPUT|_IOS_OUTPUT) \
|
A D | libioP.h | 344 struct _IO_FILE_plus __fp; member 379 #define _IO_sputn(__fp, __s, __n) _IO_XSPUTN (__fp, __s, __n) argument 525 #define _IO_setp(__fp, __p, __ep) \ argument 526 ((__fp)->_IO_write_base = (__fp)->_IO_write_ptr \ 527 = __p, (__fp)->_IO_write_end = (__ep)) 528 #define _IO_wsetp(__fp, __p, __ep) \ argument 529 ((__fp)->_wide_data->_IO_write_base \ 530 = (__fp)->_wide_data->_IO_write_ptr = __p, \ 531 (__fp)->_wide_data->_IO_write_end = (__ep)) 565 #define _IO_file_is_open(__fp) ((__fp)->_fileno != -1) argument
|
/libio/bits/ |
A D | stdio.h | 56 fgetc_unlocked (FILE *__fp) in fgetc_unlocked() argument 58 return __getc_unlocked_body (__fp); in fgetc_unlocked() 66 getc_unlocked (FILE *__fp) in getc_unlocked() argument 68 return __getc_unlocked_body (__fp); in getc_unlocked()
|
Completed in 13 milliseconds