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

1 2 3 4 5 6

  /bionic/libc/stdio/
refill.c 42 if ((fp->_flags & (__SLBF|__SWR)) == (__SLBF|__SWR))
70 if (fp->_flags & __SWR) {
73 fp->_flags &= ~__SWR;
109 if ((fp->_flags & (__SLBF|__SWR)) == (__SLBF|__SWR))
stdio_ext.cpp 59 return (fp->_flags & (__SWR|__SRW)) != 0;
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
flags.c 59 ret = __SWR;
65 ret = __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.
fflush.c 47 if ((fp->_flags & (__SWR | __SRW)) == 0) {
64 if ((t & __SWR) == 0)
vasprintf.c 35 f._flags = __SWR | __SSTR | __SALC;
vdprintf.c 62 f._flags = __SWR;
ungetc.c 96 if (fp->_flags & __SWR) {
99 fp->_flags &= ~__SWR;
vswprintf.c 57 f._flags = __SWR | __SSTR | __SALC;
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
flags.c 78 ret = __SWR;
84 ret = __SWR;
wsetup.c 56 * because either _flags does not include __SWR, or _buf is NULL.
76 if ((fp->_flags & __SWR) == 0) {
87 fp->_flags |= __SWR;
99 * to 0 whenever we turn off __SWR.
refill.c 70 if ((fp->_flags & (__SLBF|__SWR)) == (__SLBF|__SWR))
108 if (fp->_flags & __SWR) {
112 fp->_flags &= ~__SWR;
vsprintf.c 67 f._flags = __SWR | __SSTR;
fflush.c 72 if ((fp->_flags & (__SWR | __SRW)) == 0) {
96 if ((t & __SWR) == 0)
fclose.c 73 r = fp->_flags & __SWR ? __sflush(fp) : 0;
ftell.c 93 } else if (fp->_flags & __SWR && fp->_p != NULL) {
ftello.c 90 } else if (fp->_flags & __SWR && fp->_p != NULL) {
funopen.c 65 flags = __SWR; /* write only */
sprintf.c 70 f._flags = __SWR | __SSTR;
ungetc.c 125 if (fp->_flags & __SWR) {
130 fp->_flags &= ~__SWR;
local.h 90 ((((fp)->_flags & __SWR) == 0 || (fp)->_bf._base == NULL) && __swsetup(fp))
snprintf.c 81 f._flags = __SWR | __SSTR;
vasprintf.c 58 f._flags = __SWR | __SSTR | __SALC;
vsnprintf.c 74 f._flags = __SWR | __SSTR;
vswprintf.c 60 f._flags = __SWR | __SSTR | __SALC;

Completed in 236 milliseconds

1 2 3 4 5 6