HomeSort by relevance Sort by last modified time
    Searched refs:__SWR (Results 1 - 25 of 115) sorted by null

1 2 3 4 5

  /bionic/libc/upstream-openbsd/lib/libc/stdio/
refill.c 42 if ((fp->_flags & (__SLBF|__SWR)) == (__SLBF|__SWR))
73 if (fp->_flags & __SWR) {
76 fp->_flags &= ~__SWR;
112 if ((fp->_flags & (__SLBF|__SWR)) == (__SLBF|__SWR))
wsetup.c 40 * because either _flags does not include __SWR, or _buf is NULL.
53 if ((fp->_flags & __SWR) == 0) {
64 fp->_flags |= __SWR;
79 * to 0 whenever we turn off __SWR.
funopen.c 51 flags = __SWR; /* write only */
vsnprintf.c 58 f._flags = __SWR | __SSTR;
vsprintf.c 53 f._flags = __SWR | __SSTR;
fflush.c 47 if ((fp->_flags & (__SWR | __SRW)) == 0) {
63 if ((t & __SWR) == 0)
ftell.c 75 } else if (fp->_flags & __SWR && fp->_p != NULL) {
vdprintf.c 62 f._flags = __SWR;
ungetc.c 96 if (fp->_flags & __SWR) {
99 fp->_flags &= ~__SWR;
asprintf.c 38 f._flags = __SWR | __SSTR | __SALC;
vasprintf.c 35 f._flags = __SWR | __SSTR | __SALC;
vswprintf.c 57 f._flags = __SWR | __SSTR | __SALC;
fseek.c 96 } else if (fp->_flags & __SWR && fp->_p != NULL)
126 if (fp->_flags & (__SWR | __SRW | __SNBF | __SNPT))
setvbuf.c 136 if (flags & __SWR) {
freopen.c 79 if (fp->_flags & __SWR)
  /bionic/libc/upstream-freebsd/lib/libc/stdio/
flags.c 65 ret = __SWR;
71 ret = __SWR;
fclose.c 58 r = fp->_flags & __SWR ? __sflush(fp) : 0;
  /bionic/libc/stdio/
snprintf.c 60 f._flags = __SWR | __SSTR;
sprintf.c 56 f._flags = __SWR | __SSTR;
findfp.c 69 std(__SWR, STDOUT_FILENO), /* stdout */
70 std(__SWR|__SNBF, STDERR_FILENO) /* stderr */
local.h 91 ((((fp)->_flags & __SWR) == 0 || (fp)->_bf._base == NULL) && \
  /ndk/sources/android/support/src/stdio/
local.h 71 ((((fp)->_flags & __SWR) == 0 || (fp)->_bf._base == NULL) && \
  /bionic/libc/include/
stdio.h 80 * if (_flags&(__SLBF|__SWR)) == (__SLBF|__SWR),
83 * if _flags&__SWR, _r is 0
146 #define __SWR 0x0008 /* OK to write */
  /development/ndk/platforms/android-3/include/
stdio.h 76 * if (_flags&(__SLBF|__SWR)) == (__SLBF|__SWR),
79 * if _flags&__SWR, _r is 0
139 #define __SWR 0x0008 /* OK to write */
  /development/ndk/platforms/android-8/include/
stdio.h 76 * if (_flags&(__SLBF|__SWR)) == (__SLBF|__SWR),
79 * if _flags&__SWR, _r is 0
139 #define __SWR 0x0008 /* OK to write */

Completed in 436 milliseconds

1 2 3 4 5