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

1 2

  /bionic/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.8 2005/08/08 08:05:36 espie Exp $ */
43 setvbuf(FILE *fp, char *buf, int mode, size_t size) function
  /bionic/libstdc++/include/
cstdio 75 using ::setvbuf;
  /ndk/build/platforms/android-5/arch-x86/usr/include/
cstdio 75 using ::setvbuf;
stdio.h 177 * made them official arguments to setvbuf(), without renaming them.
183 #define _IOFBF 0 /* setvbuf should set fully buffered */
184 #define _IOLBF 1 /* setvbuf should set line buffered */
185 #define _IONBF 2 /* setvbuf should set unbuffered */
264 int setvbuf(FILE *, char *, int, size_t);
  /ndk/build/platforms/android-8/arch-x86/usr/include/
cstdio 75 using ::setvbuf;
  /external/srec/portable/src/UNIX/
PFileSystemUNIXImpl.c 65 setvbuf(stdout, NULL, _IONBF, 0);
70 setvbuf(stderr, NULL, _IONBF, 0);
  /external/dropbear/libtomcrypt/src/prngs/
rng_get_bytes.c 39 if (setvbuf(f, NULL, _IONBF, 0) != 0) {
  /system/extras/tests/bionic/libstdc++/
test_cstdio.cpp 137 using std::setvbuf;
  /development/tools/jdwpspy/
Main.c 129 setvbuf(stdout, NULL, _IONBF, 0);
  /external/stlport/stlport/stl/
_cstdio.h 112 using _STLP_VENDOR_CSTD::setvbuf;
  /external/qemu/distrib/sdl-1.2.12/src/main/win32/
SDL_win32_main.c 18 # define setvbuf(w,x,y,z) macro
316 setvbuf(stdout, NULL, _IOLBF, BUFSIZ); /* Line buffered */
  /external/openssl/crypto/rand/
randfile.c 146 setvbuf(in, NULL, _IONBF, 0); /* don't do buffered reads */
  /external/stlport/src/
stdio_streambuf.cpp 70 _STLP_VENDOR_CSTD::setvbuf(_M_file, s, (s == 0 && n == 0) ? _IONBF : _IOFBF, __n_size_t);
  /development/simulator/app/
MyApp.cpp 111 setvbuf(stdout, NULL, _IONBF, 0);
112 setvbuf(stderr, NULL, _IONBF, 0);
  /external/openssl/apps/
enc.c 386 setvbuf(stdin, (char *)NULL, _IONBF, 0);
440 setvbuf(stdout, (char *)NULL, _IONBF, 0);
  /bionic/libc/include/
stdio.h 177 * made them official arguments to setvbuf(), without renaming them.
183 #define _IOFBF 0 /* setvbuf should set fully buffered */
184 #define _IOLBF 1 /* setvbuf should set line buffered */
185 #define _IONBF 2 /* setvbuf should set unbuffered */
264 int setvbuf(FILE *, char *, int, size_t);
  /dalvik/dalvikvm/
Main.c 152 setvbuf(stdout, NULL, _IONBF, 0);
  /dalvik/dexopt/
OptMain.c 476 setvbuf(stdout, NULL, _IONBF, 0);
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
wpa_debug.c 266 setvbuf(out_file, NULL, _IOLBF, 0);
  /ndk/build/platforms/android-3/arch-arm/usr/include/
stdio.h 177 * made them official arguments to setvbuf(), without renaming them.
183 #define _IOFBF 0 /* setvbuf should set fully buffered */
184 #define _IOLBF 1 /* setvbuf should set line buffered */
185 #define _IONBF 2 /* setvbuf should set unbuffered */
264 int setvbuf(FILE *, char *, int, size_t);
  /ndk/build/platforms/android-4/arch-arm/usr/include/
stdio.h 177 * made them official arguments to setvbuf(), without renaming them.
183 #define _IOFBF 0 /* setvbuf should set fully buffered */
184 #define _IOLBF 1 /* setvbuf should set line buffered */
185 #define _IONBF 2 /* setvbuf should set unbuffered */
264 int setvbuf(FILE *, char *, int, size_t);
  /ndk/build/platforms/android-5/arch-arm/usr/include/
stdio.h 177 * made them official arguments to setvbuf(), without renaming them.
183 #define _IOFBF 0 /* setvbuf should set fully buffered */
184 #define _IOLBF 1 /* setvbuf should set line buffered */
185 #define _IONBF 2 /* setvbuf should set unbuffered */
264 int setvbuf(FILE *, char *, int, size_t);
  /ndk/build/platforms/android-8/arch-arm/usr/include/
stdio.h 177 * made them official arguments to setvbuf(), without renaming them.
183 #define _IOFBF 0 /* setvbuf should set fully buffered */
184 #define _IOLBF 1 /* setvbuf should set line buffered */
185 #define _IONBF 2 /* setvbuf should set unbuffered */
264 int setvbuf(FILE *, char *, int, size_t);

Completed in 530 milliseconds

1 2