Symbol: __SWR
lib/libc/stdio/asprintf.c
34
FILE f = FILEINIT(__SWR | __SSTR | __SALC);
lib/libc/stdio/fflush.c
62
if (t & __SWR) {
lib/libc/stdio/findfp.c
68
FILE __stdout[1] = { std(__SWR, STDOUT_FILENO, __stdout) };
lib/libc/stdio/findfp.c
69
FILE __stderr[1] = { std(__SWR|__SNBF, STDERR_FILENO, __stderr) };
lib/libc/stdio/flags.c
59
ret = __SWR;
lib/libc/stdio/flags.c
65
ret = __SWR;
lib/libc/stdio/fmemopen.c
182
fp->_read = (flags & __SWR) ? NULL : fmemopen_read;
lib/libc/stdio/fpending.c
26
if ((fp->_flags & __SWR) && fp->_bf._base != NULL)
lib/libc/stdio/fseek.c
127
if (fp->_flags & (__SWR | __SRW | __SNBF | __SNPT))
lib/libc/stdio/fseek.c
234
if (((fp->_flags & __SWR) && __sflush(fp)) ||
lib/libc/stdio/fseek.c
96
} else if (fp->_flags & __SWR && fp->_p != NULL)
lib/libc/stdio/ftell.c
58
if (fp->_flags & __SWR)
lib/libc/stdio/ftell.c
76
} else if (fp->_flags & __SWR && fp->_p != NULL) {
lib/libc/stdio/funopen.c
51
flags = __SWR; /* write only */
lib/libc/stdio/fwriting.c
24
return (fp->_flags & __SWR) != 0;
lib/libc/stdio/local.h
73
((((fp)->_flags & __SWR) == 0 || (fp)->_bf._base == NULL) && \
lib/libc/stdio/open_memstream.c
146
fp->_flags = __SWR;
lib/libc/stdio/open_wmemstream.c
157
fp->_flags = __SWR;
lib/libc/stdio/refill.c
112
if ((fp->_flags & (__SLBF|__SWR)) == (__SLBF|__SWR))
lib/libc/stdio/refill.c
42
if ((fp->_flags & (__SLBF|__SWR)) == (__SLBF|__SWR))
lib/libc/stdio/refill.c
73
if (fp->_flags & __SWR) {
lib/libc/stdio/refill.c
76
fp->_flags &= ~__SWR;
lib/libc/stdio/setvbuf.c
144
if (flags & __SWR) {
lib/libc/stdio/snprintf.c
46
FILE f = FILEINIT(__SWR | __SSTR);
lib/libc/stdio/sprintf.c
50
FILE f = FILEINIT(__SWR | __SSTR);
lib/libc/stdio/ungetc.c
96
if (fp->_flags & __SWR) {
lib/libc/stdio/ungetc.c
99
fp->_flags &= ~__SWR;
lib/libc/stdio/vasprintf.c
32
FILE f = FILEINIT(__SWR | __SSTR | __SALC);
lib/libc/stdio/vdprintf.c
53
FILE f = FILEINIT(__SWR);
lib/libc/stdio/vfprintf.c
477
if ((fp->_flags & (__SNBF|__SWR|__SRW)) == (__SNBF|__SWR) &&
lib/libc/stdio/vfwprintf.c
454
if ((fp->_flags & (__SNBF|__SWR|__SRW)) == (__SNBF|__SWR) &&
lib/libc/stdio/vsnprintf.c
44
FILE f = FILEINIT(__SWR | __SSTR);
lib/libc/stdio/vsprintf.c
48
FILE f = FILEINIT(__SWR | __SSTR);;
lib/libc/stdio/vswprintf.c
44
FILE f = FILEINIT(__SWR | __SSTR | __SALC);
lib/libc/stdio/wsetup.c
54
if ((fp->_flags & __SWR) == 0) {
lib/libc/stdio/wsetup.c
68
fp->_flags |= __SWR;