Symbol: _IO_CURRENTLY_PUTTING
src/system/libroot/posix/glibc/libio/__freading.c
24
|| ((fp->_flags & (_IO_CURRENTLY_PUTTING | _IO_NO_READS)) == 0
src/system/libroot/posix/glibc/libio/__fwriting.c
23
return fp->_flags & (_IO_NO_READS | _IO_CURRENTLY_PUTTING);
src/system/libroot/posix/glibc/libio/fileops.c
1364
if ((f->_flags & _IO_LINE_BUF) && (f->_flags & _IO_CURRENTLY_PUTTING))
src/system/libroot/posix/glibc/libio/fileops.c
165
&& (fp->_flags & _IO_CURRENTLY_PUTTING) != 0)
src/system/libroot/posix/glibc/libio/fileops.c
850
if ((f->_flags & _IO_CURRENTLY_PUTTING) == 0 || f->_IO_write_base == NULL)
src/system/libroot/posix/glibc/libio/fileops.c
881
f->_flags |= _IO_CURRENTLY_PUTTING;
src/system/libroot/posix/glibc/libio/genops.c
198
fp->_flags &= ~_IO_CURRENTLY_PUTTING;
src/system/libroot/posix/glibc/libio/genops.c
230
fp->_flags |= _IO_CURRENTLY_PUTTING;
src/system/libroot/posix/glibc/libio/libioP.h
541
#define _IO_in_put_mode(_fp) ((_fp)->_flags & _IO_CURRENTLY_PUTTING)
src/system/libroot/posix/glibc/libio/strops.c
101
fp->_flags |= _IO_CURRENTLY_PUTTING;
src/system/libroot/posix/glibc/libio/strops.c
159
if ((fp->_flags & _IO_TIED_PUT_GET) && (fp->_flags & _IO_CURRENTLY_PUTTING))
src/system/libroot/posix/glibc/libio/strops.c
161
fp->_flags &= ~_IO_CURRENTLY_PUTTING;
src/system/libroot/posix/glibc/libio/strops.c
260
mode = (fp->_flags & _IO_CURRENTLY_PUTTING ? _IOS_OUTPUT : _IOS_INPUT);
src/system/libroot/posix/glibc/libio/strops.c
99
if ((fp->_flags & _IO_TIED_PUT_GET) && !(fp->_flags & _IO_CURRENTLY_PUTTING))
src/system/libroot/posix/glibc/libio/wfileops.c
430
if ((f->_flags & _IO_CURRENTLY_PUTTING) == 0)
src/system/libroot/posix/glibc/libio/wfileops.c
473
f->_flags |= _IO_CURRENTLY_PUTTING;
src/system/libroot/posix/glibc/libio/wfileops.c
994
if ((f->_flags & _IO_LINE_BUF) && (f->_flags & _IO_CURRENTLY_PUTTING))
src/system/libroot/posix/glibc/libio/wgenops.c
456
fp->_flags &= ~_IO_CURRENTLY_PUTTING;
src/system/libroot/posix/glibc/libio/wgenops.c
489
fp->_flags |= _IO_CURRENTLY_PUTTING;
src/system/libroot/posix/glibc/libio/wstrops.c
147
if ((fp->_flags & _IO_TIED_PUT_GET) && (fp->_flags & _IO_CURRENTLY_PUTTING))
src/system/libroot/posix/glibc/libio/wstrops.c
149
fp->_flags &= ~_IO_CURRENTLY_PUTTING;
src/system/libroot/posix/glibc/libio/wstrops.c
255
mode = (fp->_flags & _IO_CURRENTLY_PUTTING ? _IOS_OUTPUT : _IOS_INPUT);
src/system/libroot/posix/glibc/libio/wstrops.c
81
if ((fp->_flags & _IO_TIED_PUT_GET) && !(fp->_flags & _IO_CURRENTLY_PUTTING))
src/system/libroot/posix/glibc/libio/wstrops.c
83
fp->_flags |= _IO_CURRENTLY_PUTTING;