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

1 2

  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
setbuf.c 62 (void) setvbuf(fp, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
setbuffer.c 61 (void)setvbuf(fp, buf, buf ? _IOFBF : _IONBF, (size_t)size);
setvbuf.c 81 if ((mode != _IOFBF && mode != _IOLBF) || (int)size < 0)
  /system/extras/pssbench/
main.cpp 29 if (setvbuf(file, NULL, _IOFBF, bufsz)) {
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
setvbuf.c 55 if ((mode != _IOFBF && mode != _IOLBF) || (int)size < 0)
  /bionic/tests/
stdio_ext_test.cpp 46 ASSERT_EQ(0, setvbuf(fp, buf, _IOFBF, 1));
49 ASSERT_EQ(0, setvbuf(fp, buf, _IOFBF, 8));
  /external/libcxx/test/std/depr/depr.c.headers/
stdio_h.pass.cpp 76 #ifndef _IOFBF
77 #error _IOFBF not defined
  /external/libcxx/test/std/input.output/file.streams/c.files/
cstdio.pass.cpp 57 #ifndef _IOFBF
58 #error _IOFBF not defined
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.c.headers/
stdio_h.pass.cpp 76 #ifndef _IOFBF
77 #error _IOFBF not defined
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/c.files/
cstdio.pass.cpp 57 #ifndef _IOFBF
58 #error _IOFBF not defined
  /bionic/tests/headers/posix/
stdio_h.c 45 MACRO(_IOFBF);
  /bionic/libc/include/
stdio.h 88 #define _IOFBF 0 /* setvbuf should set fully buffered */
  /device/linaro/bootloader/edk2/StdLib/Include/
stdio.h 286 #define _IOFBF 0 /**< setvbuf should set fully buffered */
459 This is equivalent to calling setvbuf(fp, Buff, _IOFBF, BUFSIZ);
475 - _IOFBF causes I/O to be fully buffered.
    [all...]
  /external/v8/src/
perf-jit.cc 136 setvbuf(perf_output_handle_, NULL, _IOFBF, kLogBufferSize);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
liolib.c 566 static const int mode[] = {_IONBF, _IOFBF, _IOLBF};
  /external/blktrace/
blkiomon.c 540 mode = _IOFBF;
blkparse.c     [all...]
  /external/syslinux/com32/lua/src/
liolib.c 581 static const int mode[] = {_IONBF, _IOFBF, _IOLBF};
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
stdio.h 121 #define _IOFBF 0 /* Fully buffered. */
  /external/fio/
iolog.c 554 setvbuf(f, td->iolog_buf, _IOFBF, 8192);
658 setvbuf(f, buf, _IOFBF, size);
configure     [all...]
  /bionic/libc/stdio/
stdio.cpp 913 setvbuf(fp, buf, buf ? _IOFBF : _IONBF, size);
  /external/expat/xmlwf/
xmlwf.c 1076 setvbuf(userData.fp, NULL, _IOFBF, 16384);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
stdio.h 123 #define _IOFBF 0x0000
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
fileobject.c 526 type = _IOFBF;
    [all...]

Completed in 961 milliseconds

1 2