/prebuilts/ndk/r11/platforms/android-3/arch-arm/usr/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 */ 251 int setvbuf(FILE *, char *, int, size_t);
|
/prebuilts/ndk/r11/platforms/android-4/arch-arm/usr/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 */ 251 int setvbuf(FILE *, char *, int, size_t);
|
/prebuilts/ndk/r11/platforms/android-5/arch-arm/usr/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 */ 251 int setvbuf(FILE *, char *, int, size_t);
|
/prebuilts/ndk/r11/platforms/android-8/arch-arm/usr/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 */ 251 int setvbuf(FILE *, char *, int, size_t);
|
/prebuilts/ndk/r11/platforms/android-9/arch-arm/usr/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 */ 251 int setvbuf(FILE *, char *, int, size_t);
|
/prebuilts/ndk/r11/platforms/android-9/arch-mips/usr/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 */ 251 int setvbuf(FILE *, char *, int, size_t);
|
/prebuilts/ndk/r11/platforms/android-9/arch-x86/usr/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 */ 251 int setvbuf(FILE *, char *, int, size_t);
|
/system/core/libcutils/ |
open_memstream.c | 322 setvbuf(stream, NULL, _IONBF, 0); /* note: crashes in glibc with this */
|
/external/wpa_supplicant_8/src/utils/ |
wpa_debug.c | 558 setvbuf(out_file, NULL, _IOLBF, 0); 583 setvbuf(stdout, NULL, _IOLBF, 0);
|
/device/linaro/bootloader/edk2/StdLib/Include/ |
stdio.h | 20 int setvbuf (FILE * __restrict, char * __restrict,
280 made them official arguments to setvbuf(), without renaming them.
286 #define _IOFBF 0 /**< setvbuf should set fully buffered */
287 #define _IOLBF 1 /**< setvbuf should set line buffered */
288 #define _IONBF 2 /**< setvbuf should set unbuffered */
455 possibly an unsuccessful call to setvbuf, performed prior to the call to setbuf.
459 This is equivalent to calling setvbuf(fp, Buff, _IOFBF, BUFSIZ);
462 This is equivalent to calling setvbuf(fp, NULL, _IONBF, 0);
472 possibly an unsuccessful call to setvbuf, performed prior to the call to setbuf.
481 by the setvbuf function if BufMode is not _IONBF. [all...] |
/external/ltp/utils/sctp/func_tests/ |
test_connectx.c | 87 setvbuf(stdout, NULL, _IONBF, 0);
|
test_peeloff.c | 87 setvbuf(stdout, NULL, _IONBF, 0);
|
test_sctp_sendrecvmsg.c | 98 setvbuf(stdout, NULL, _IONBF, 0);
|
test_basic.c | 98 setvbuf(stdout, NULL, _IONBF, 0);
|
test_tcp_style.c | 87 setvbuf(stdout, NULL, _IONBF, 0);
|
test_timetolive.c | 120 setvbuf(stdout, NULL, _IONBF, 0);
|
/external/openssh/regress/misc/kexfuzz/ |
kexfuzz.c | 353 setvbuf(stdout, NULL, _IONBF, 0);
|
/external/openssh/ |
ssh-add.c | 495 setvbuf(stdout, NULL, _IOLBF, 0);
|
/external/v8/src/ |
perf-jit.cc | 136 setvbuf(perf_output_handle_, NULL, _IOFBF, kLogBufferSize);
|
/frameworks/av/media/libaaudio/examples/loopback/src/ |
loopback.cpp | 278 setvbuf(stdout, NULL, _IONBF, (size_t) 0);
|
/bionic/libc/stdio/ |
stdio.cpp | 771 setvbuf(fp, buf, buf ? _IOFBF : _IONBF, size); 775 return setvbuf(fp, nullptr, _IOLBF, 0);
|
/external/e2fsprogs/misc/ |
fsck.c | 1261 setvbuf(stdout, NULL, _IONBF, BUFSIZ); 1262 setvbuf(stderr, NULL, _IONBF, BUFSIZ);
|
/external/tcpdump/ |
tcpdump.c | [all...] |
/bionic/libc/include/ |
stdio.h | 90 * made them official arguments to setvbuf(), without renaming them. 96 #define _IOFBF 0 /* setvbuf should set fully buffered */ 97 #define _IOLBF 1 /* setvbuf should set line buffered */ 98 #define _IONBF 2 /* setvbuf should set unbuffered */ 148 int setvbuf(FILE * __restrict, char * __restrict, int, size_t);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
liolib.c | 571 int res = setvbuf(f, NULL, mode[op], sz);
615 {"setvbuf", f_setvbuf},
|