Symbol: __SWR
lib/libc/stdio/fclose.c
64
r = fp->_flags & __SWR ? __sflush(fp) : 0;
lib/libc/stdio/fflush.c
69
if ((fp->_flags & (__SWR | __SRW)) == 0) {
lib/libc/stdio/fflush.c
93
if ((t & __SWR) == 0)
lib/libc/stdio/findfp.c
100
std(__SWR|__SNBF, STDERR_FILENO) /* stderr */
lib/libc/stdio/findfp.c
99
std(__SWR, STDOUT_FILENO), /* stdout */
lib/libc/stdio/flags.c
73
ret = __SWR;
lib/libc/stdio/flags.c
79
ret = __SWR;
lib/libc/stdio/fmemopen.c
224
fp->_read = (flags & __SWR) ? NULL : fmemopen_read;
lib/libc/stdio/freopen.c
95
if (fp->_flags & __SWR)
lib/libc/stdio/fseeko.c
114
} else if (fp->_flags & __SWR && fp->_p != NULL)
lib/libc/stdio/fseeko.c
155
if (fp->_flags & (__SWR | __SRW | __SNBF | __SNPT))
lib/libc/stdio/ftell.c
90
} else if (fp->_flags & __SWR && fp->_p != NULL) {
lib/libc/stdio/ftello.c
91
} else if (fp->_flags & __SWR && fp->_p != NULL) {
lib/libc/stdio/funopen.c
67
flags = __SWR; /* write only */
lib/libc/stdio/local.h
92
((((fp)->_flags & __SWR) == 0 || (fp)->_bf._base == NULL) && \
lib/libc/stdio/refill.c
61
if ((fp->_flags & (__SLBF|__SWR)) == (__SLBF|__SWR))
lib/libc/stdio/refill.c
94
if (fp->_flags & __SWR) {
lib/libc/stdio/refill.c
97
fp->_flags &= ~__SWR;
lib/libc/stdio/setvbuf.c
154
if (flags & __SWR) {
lib/libc/stdio/ungetc.c
113
if (fp->_flags & __SWR) {
lib/libc/stdio/ungetc.c
118
fp->_flags &= ~__SWR;
lib/libc/stdio/vasprintf.c
65
f._flags = __SWR | __SSTR | __SALC;
lib/libc/stdio/vdprintf.c
95
f._flags = __SWR;
lib/libc/stdio/vfwprintf.c
839
if ((fp->_flags & (__SNBF|__SWR|__SRW)) == (__SNBF|__SWR) &&
lib/libc/stdio/vsnprintf.c
90
f._flags = __SWR | __SSTR;
lib/libc/stdio/vsprintf.c
75
f._flags = __SWR | __SSTR;
lib/libc/stdio/vswprintf.c
72
f._flags = __SWR | __SSTR | __SALC;
lib/libc/stdio/wsetup.c
69
if ((fp->_flags & __SWR) == 0) {
lib/libc/stdio/wsetup.c
80
fp->_flags |= __SWR;