Symbol: __SWR
lib/libc/stdio/fclose.c
51
r = fp->_flags & __SWR ? __sflush(fp) : 0;
lib/libc/stdio/fflush.c
106
if ((f & __SWR) == 0)
lib/libc/stdio/fflush.c
71
if ((fp->_flags & (__SWR | __SRW)) == 0)
lib/libc/stdio/fflush.c
90
if ((fp->_flags & (__SWR | __SRW)) == 0)
lib/libc/stdio/findfp.c
69
std(__SWR, STDOUT_FILENO),
lib/libc/stdio/findfp.c
70
std(__SWR|__SNBF, STDERR_FILENO)
lib/libc/stdio/flags.c
61
ret = __SWR;
lib/libc/stdio/flags.c
67
ret = __SWR;
lib/libc/stdio/fopencookie.c
66
if (flags == __SWR)
lib/libc/stdio/freopen.c
142
if (fp->_flags & __SWR)
lib/libc/stdio/freopen.c
99
if (fp->_flags & __SWR)
lib/libc/stdio/fseek.c
167
if (fp->_flags & (__SWR | __SRW | __SNBF | __SNPT))
lib/libc/stdio/ftell.c
122
} else if ((fp->_flags & __SWR) && fp->_p != NULL &&
lib/libc/stdio/ftell.c
96
if (!(fp->_flags & __SRD) && (fp->_flags & __SWR) &&
lib/libc/stdio/funopen.c
55
flags = __SWR; /* write only */
lib/libc/stdio/local.h
103
((((fp)->_flags & __SWR) == 0 || \
lib/libc/stdio/refill.c
126
if ((fp->_flags & (__SLBF|__SWR)) == (__SLBF|__SWR))
lib/libc/stdio/refill.c
51
if ((fp->_flags & (__SLBF|__SWR)) == (__SLBF|__SWR)) {
lib/libc/stdio/refill.c
87
if (fp->_flags & __SWR) {
lib/libc/stdio/refill.c
90
fp->_flags &= ~__SWR;
lib/libc/stdio/setvbuf.c
139
if (flags & __SWR) {
lib/libc/stdio/snprintf.c
68
f._flags = __SWR | __SSTR;
lib/libc/stdio/snprintf.c
97
f._flags = __SWR | __SSTR;
lib/libc/stdio/ungetc.c
116
if (fp->_flags & __SWR) {
lib/libc/stdio/ungetc.c
119
fp->_flags &= ~__SWR;
lib/libc/stdio/vasprintf.c
51
f._flags = __SWR | __SSTR | __SALC;
lib/libc/stdio/vdprintf.c
59
f._flags = __SWR;
lib/libc/stdio/vfprintf.c
277
if ((fp->_flags & (__SNBF|__SWR|__SRW)) == (__SNBF|__SWR) &&
lib/libc/stdio/vfwprintf.c
355
if ((fp->_flags & (__SNBF|__SWR|__SRW)) == (__SNBF|__SWR) &&
lib/libc/stdio/vsnprintf.c
74
f._flags = __SWR | __SSTR;
lib/libc/stdio/vsprintf.c
57
f._flags = __SWR | __SSTR;
lib/libc/stdio/vswprintf.c
67
f._flags = __SWR | __SSTR | __SALC;
lib/libc/stdio/wsetup.c
55
if ((fp->_flags & __SWR) == 0) {
lib/libc/stdio/wsetup.c
69
fp->_flags |= __SWR;
lib/libc/stdio/xprintf.c
614
if ((fp->_flags & (__SNBF|__SWR|__SRW)) == (__SNBF|__SWR) &&