Searched refs:_IO_NO_READS (Results 1 – 15 of 15) sorted by relevance
/libio/ |
A D | iofdopen.c | 59 read_write = _IO_NO_READS; in _IO_new_fdopen() 62 read_write = _IO_NO_READS|_IO_IS_APPENDING; in _IO_new_fdopen() 93 || ((fd_flags & O_ACCMODE) == O_WRONLY && !(read_write & _IO_NO_READS))) in _IO_new_fdopen() 149 _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING); in _IO_new_fdopen() 154 if (do_seek && ((read_write & (_IO_IS_APPENDING | _IO_NO_READS)) in _IO_new_fdopen() 155 == (_IO_IS_APPENDING | _IO_NO_READS))) in _IO_new_fdopen()
|
A D | oldiofdopen.c | 56 read_write = _IO_NO_READS; in _IO_old_fdopen() 60 read_write = _IO_NO_READS|_IO_IS_APPENDING; in _IO_old_fdopen() 71 || ((fd_flags & O_ACCMODE) == O_WRONLY && !(read_write & _IO_NO_READS))) in _IO_old_fdopen() 114 _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING); in _IO_old_fdopen()
|
A D | __freadable.c | 23 return (fp->_flags & _IO_NO_READS) == 0; in __freadable()
|
A D | __fwriting.c | 23 return fp->_flags & (_IO_NO_READS | _IO_CURRENTLY_PUTTING); in __fwriting()
|
A D | stdfiles.c | 53 DEF_STDFILE(_IO_2_1_stdout_, 1, &_IO_2_1_stdin_, _IO_NO_READS); 54 DEF_STDFILE(_IO_2_1_stderr_, 2, &_IO_2_1_stdout_, _IO_NO_READS+_IO_UNBUFFERED);
|
A D | __freading.c | 24 || ((fp->_flags & (_IO_CURRENTLY_PUTTING | _IO_NO_READS)) == 0 in __freading()
|
A D | iovdprintf.c | 51 _IO_mask_flags (&tmpfil.file, _IO_NO_READS, in __vdprintf_internal() 52 _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING); in __vdprintf_internal()
|
A D | oldstdfiles.c | 48 DEF_STDFILE(_IO_stdout_, 1, &_IO_stdin_, _IO_NO_READS); 49 DEF_STDFILE(_IO_stderr_, 2, &_IO_stdout_, _IO_NO_READS+_IO_UNBUFFERED);
|
A D | iofopncook.c | 163 _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING); in _IO_cookie_init() 193 read_write = _IO_NO_READS; in _IO_fopencookie() 196 read_write = _IO_NO_READS|_IO_IS_APPENDING; in _IO_fopencookie()
|
A D | oldfileops.c | 93 (_IO_IS_FILEBUF+_IO_NO_READS+_IO_NO_WRITES+_IO_TIED_PUT_GET) 184 read_write = _IO_NO_READS; in _IO_old_file_fopen() 189 read_write = _IO_NO_READS|_IO_IS_APPENDING; in _IO_old_file_fopen() 204 _IO_mask_flags (fp, read_write,_IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING); in _IO_old_file_fopen() 220 fp->_flags &= ~(_IO_NO_READS+_IO_NO_WRITES); in _IO_old_file_attach() 298 if (fp->_flags & _IO_NO_READS) in _IO_old_file_underflow() 553 if (fp->_flags & _IO_NO_READS) in _IO_old_file_seekoff()
|
A D | oldiopopen.c | 82 read_or_write = _IO_NO_READS; in _IO_old_proc_open() 132 _IO_mask_flags (fp, read_or_write, _IO_NO_READS|_IO_NO_WRITES); in _IO_old_proc_open()
|
A D | iopopen.c | 167 read_or_write = _IO_NO_READS; in _IO_new_proc_open() 214 _IO_mask_flags (fp, read_or_write, _IO_NO_READS|_IO_NO_WRITES); in _IO_new_proc_open()
|
A D | fileops.c | 101 (_IO_IS_FILEBUF+_IO_NO_READS+_IO_NO_WRITES+_IO_TIED_PUT_GET) 192 _IO_mask_flags (fp, read_write,_IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING); in libc_hidden_ver() 195 if ((read_write & (_IO_IS_APPENDING | _IO_NO_READS)) in libc_hidden_ver() 196 == (_IO_IS_APPENDING | _IO_NO_READS)) in libc_hidden_ver() 233 read_write = _IO_NO_READS; in libc_hidden_def() 238 read_write = _IO_NO_READS|_IO_IS_APPENDING; in libc_hidden_def() 365 fp->_flags &= ~(_IO_NO_READS+_IO_NO_WRITES); in libc_hidden_ver() 468 if (fp->_flags & _IO_NO_READS) in _IO_new_file_underflow() 997 if (fp->_flags & _IO_NO_READS) in _IO_new_file_seekoff()
|
A D | libio.h | 70 #define _IO_NO_READS 0x0004 /* Reading not allowed. */ macro
|
A D | wfileops.c | 121 if (__glibc_unlikely (fp->_flags & _IO_NO_READS)) in libc_hidden_def() 337 if (__glibc_unlikely (fp->_flags & _IO_NO_READS)) in libc_hidden_def() 882 if (fp->_flags & _IO_NO_READS) in _IO_wfile_seekoff()
|
Completed in 25 milliseconds