HomeSort by relevance Sort by last modified time
    Searched refs:__SNBF (Results 1 - 22 of 22) sorted by null

  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fpurge.c 58 fp->_w = fp->_flags & (__SLBF|__SNBF) ? 0 : fp->_bf._size;
makebuf.c 56 if (fp->_flags & __SNBF) {
63 fp->_flags |= __SNBF;
wsetup.c 84 fp->_w = fp->_flags & __SNBF ? 0 : fp->_bf._size;
setvbuf.c 74 flags &= ~(__SLBF | __SNBF | __SMBF | __SOPT | __SNPT | __SEOF);
107 fp->_flags = flags | __SNBF;
145 * that __SNBF is impossible (it was handled earlier).
fvwrite.c 79 if (fp->_flags & __SNBF) {
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fpurge.c 80 fp->_w = fp->_flags & (__SLBF|__SNBF) ? 0 : fp->_bf._size;
wsetup.c 104 fp->_w = fp->_flags & __SNBF ? 0 : fp->_bf._size;
makebuf.c 78 if (fp->_flags & __SNBF) {
86 fp->_flags |= __SNBF;
setvbuf.c 100 flags &= ~(__SLBF | __SNBF | __SMBF | __SOPT | __SNPT | __SEOF);
133 fp->_flags = (unsigned short)(flags | __SNBF);
165 * that __SNBF is impossible (it was handled earlier).
fflush.c 109 fp->_w = t & (__SLBF|__SNBF) ? 0 : fp->_bf._size;
refill.c 141 if (fp->_flags & (__SLBF|__SNBF)) {
findfp.c 89 std(__SWR|__SNBF, STDERR_FILENO) /* stderr */
fvwrite.c 101 if (fp->_flags & __SNBF) {
fseeko.c 166 if (fp->_flags & (__SWR | __SRW | __SNBF | __SNPT))
vfwprintf.c 175 fake._flags = fp->_flags & ~__SNBF;
839 if ((fp->_flags & (__SNBF|__SWR|__SRW)) == (__SNBF|__SWR) &&
    [all...]
  /bionic/libc/stdio/
refill.c 102 if (fp->_flags & (__SLBF|__SNBF)) {
vfprintf.cpp 144 if ((fp->_flags & (__SNBF | __SWR | __SRW)) == (__SNBF | __SWR) && fp->_file >= 0) {
vfwprintf.cpp 133 if ((fp->_flags & (__SNBF | __SWR | __SRW)) == (__SNBF | __SWR) && fp->_file >= 0) {
local.h 144 #define __SNBF 0x0002 // Unbuffered.
printf_common.h 93 fake._flags = fp->_flags & ~__SNBF;
stdio.cpp 87 std(__SWR|__SNBF, STDERR_FILENO),
455 fp->_w = (fp->_flags & (__SLBF|__SNBF)) ? 0 : fp->_bf._size;
  /device/linaro/bootloader/edk2/StdLib/Include/
stdio.h 262 #define __SNBF 0x0002 /**< unbuffered */
    [all...]

Completed in 316 milliseconds