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

1 2

  /bionic/libc/upstream-openbsd/lib/libc/stdio/
setbuf.c 40 (void) setvbuf(fp, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
setbuffer.c 40 (void)setvbuf(fp, buf, buf ? _IOFBF : _IONBF, size);
50 return (setvbuf(fp, (char *)NULL, _IOLBF, (size_t)0));
setvbuf.c 1 /* $OpenBSD: setvbuf.c,v 1.11 2009/11/09 00:18:27 kurt Exp $ */
43 setvbuf(FILE *fp, char *buf, int mode, size_t size) function
  /external/deqp/framework/platform/
tcuMain.cpp 41 setvbuf(stdout, DE_NULL, _IOLBF, 4*1024);
  /external/deqp/execserver/tools/
xsMain.cpp 51 setvbuf(stdout, DE_NULL, _IOLBF, 4*1024);
  /external/chromium_org/third_party/WebKit/Source/wtf/
DataLog.cpp 71 setvbuf(file->file(), 0, _IONBF, 0); // Prefer unbuffered output, so that we get a full log upon crash or deadlock.
  /external/clang/test/Analysis/Inputs/
system-header-simulator.h 46 int setvbuf(FILE * restrict, char * restrict, int, size_t);
  /bionic/libstdc++/include/
cstdio 79 using ::setvbuf;
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/inbrowser_test_runner/
test_runner_ppapi.c 43 setvbuf(stdout, NULL, _IONBF, 0);
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
sunos4.h 113 extern int setvbuf(FILE *, char *, int, size_t);
  /external/chromium_org/base/process/
launch_win.cc 91 setvbuf(stdout, NULL, _IOLBF, kOutputBufferSize);
100 setvbuf(stderr, NULL, _IOLBF, kOutputBufferSize);
  /external/fio/
configure 1151 # Check whether we have setvbuf
1152 setvbuf="no"
1159 setvbuf(f, buf, _IOFBF, sizeof(buf));
1163 if compile_prog "" "" "setvbuf"; then
1164 setvbuf="yes"
1166 echo "setvbuf $setvbuf"
1322 if test "$setvbuf" = "yes" ; then
iolog.c 498 setvbuf(f, td->iolog_buf, _IOFBF, 8192);
561 setvbuf(f, buf, _IOFBF, size);
  /art/dalvikvm/
dalvikvm.cc 108 setvbuf(stdout, NULL, _IONBF, 0);
  /external/chromium_org/v8/src/
perf-jit.cc 61 setvbuf(perf_output_handle_, NULL, _IOFBF, kLogBufferSize);
  /external/openssl/crypto/rand/
randfile.c 151 setvbuf(in, NULL, _IONBF, 0); /* don't do buffered reads */
  /external/chromium_org/third_party/cython/src/Cython/Includes/libc/
stdio.pxd 31 int setvbuf (FILE *stream, char *buf, int mode, size_t size)
  /bionic/libc/include/
stdio.h 164 * made them official arguments to setvbuf(), without renaming them.
170 #define _IOFBF 0 /* setvbuf should set fully buffered */
171 #define _IOLBF 1 /* setvbuf should set line buffered */
172 #define _IONBF 2 /* setvbuf should set unbuffered */
248 int setvbuf(FILE * __restrict, char * __restrict, int, size_t);
  /development/ndk/platforms/android-3/include/
stdio.h 156 * made them official arguments to setvbuf(), without renaming them.
162 #define _IOFBF 0 /* setvbuf should set fully buffered */
163 #define _IOLBF 1 /* setvbuf should set line buffered */
164 #define _IONBF 2 /* setvbuf should set unbuffered */
243 int setvbuf(FILE *, char *, int, size_t);
  /development/ndk/platforms/android-8/include/
stdio.h 156 * made them official arguments to setvbuf(), without renaming them.
162 #define _IOFBF 0 /* setvbuf should set fully buffered */
163 #define _IOLBF 1 /* setvbuf should set line buffered */
164 #define _IONBF 2 /* setvbuf should set unbuffered */
243 int setvbuf(FILE *, char *, int, size_t);
  /development/ndk/platforms/android-L/include/
stdio.h 152 * made them official arguments to setvbuf(), without renaming them.
158 #define _IOFBF 0 /* setvbuf should set fully buffered */
159 #define _IOLBF 1 /* setvbuf should set line buffered */
160 #define _IONBF 2 /* setvbuf should set unbuffered */
243 int setvbuf(FILE * __restrict, char * __restrict, int, size_t);
  /external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
ps_instance.cc 300 setvbuf(stderr, NULL, _IOLBF, 0);
301 setvbuf(stdout, NULL, _IOLBF, 0);
  /external/openssl/apps/
enc.c 415 setvbuf(stdin, (char *)NULL, _IONBF, 0);
471 setvbuf(stdout, (char *)NULL, _IONBF, 0);
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 521 /// int setvbuf(FILE *stream, char *buf, int type, size_t size);
522 setvbuf, enumerator in enum:llvm::LibFunc::Func
  /external/ltrace/
options.c 642 setvbuf(options.output, (char *)NULL, _IOLBF, 0);

Completed in 777 milliseconds

1 2