/bionic/libc/stdio/ |
setbuf.c | 1 /* $OpenBSD: setbuf.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ 38 setbuf(FILE *fp, char *buf) function
|
/external/zlib/contrib/iostream3/ |
README | 21 - added setbuf, with support for unbuffered output via setbuf(0,0)
|
zfstream.h | 133 * Call setbuf(0,0) to enable unbuffered output. 136 setbuf(char_type* p, 205 * entire life span of the gzfilebuf object, unless replaced by setbuf. 213 * Modified by setbuf.
|
/external/e2fsprogs/e2fsck/ |
iscan.c | 60 setbuf(stdout, NULL); 61 setbuf(stderr, NULL);
|
mtrace.c | 148 setbuf (mallstream, mallbuf);
|
/bootable/recovery/updater/ |
updater.c | 39 setbuf(stdout, NULL); 40 setbuf(stderr, NULL);
|
/external/e2fsprogs/lib/ss/ |
test_ss.c | 52 setbuf(stdout, NULL); 53 setbuf(stderr, NULL);
|
/bionic/libstdc++/include/ |
cstdio | 76 using ::setbuf;
|
/ndk/sources/cxx-stl/system/include/ |
cstdio | 76 using ::setbuf;
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/ |
cstdio | 74 using ::setbuf;
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/ |
cstdio | 74 using ::setbuf;
|
/external/qemu/distrib/sdl-1.2.12/src/ |
SDL.c | 313 setbuf(stdout, NULL); 314 setbuf(stderr, NULL);
|
/external/bluetooth/glib/tests/ |
iochannel-test.c | 73 setbuf (stdout, NULL); /* For debugging */
|
/external/stlport/src/ |
stdio_streambuf.h | 59 streambuf* setbuf(char*, streamsize);
|
/external/stlport/stlport/stl/ |
_cstdio.h | 107 using _STLP_VENDOR_CSTD::setbuf;
|
_sstream.c | 256 // According to the C++ standard the effects of setbuf are implementation 257 // defined, except that setbuf(0, 0) has no effect. In this implementation, 258 // setbuf(<anything>, n), for n > 0, calls reserve(n) on the underlying 262 basic_stringbuf<_CharT, _Traits, _Alloc>::setbuf(_CharT*, streamsize __n) { function in class:_Alloc
|
_streambuf.h | 124 virtual basic_streambuf<_CharT, _Traits>* setbuf(char_type*, streamsize); 143 { return this->setbuf(__s, __n); }
|
/ndk/sources/android/stlport/src/ |
stdio_streambuf.h | 59 streambuf* setbuf(char*, streamsize);
|
/ndk/sources/android/stlport/stlport/stl/ |
_cstdio.h | 107 using _STLP_VENDOR_CSTD::setbuf;
|
_sstream.c | 256 // According to the C++ standard the effects of setbuf are implementation 257 // defined, except that setbuf(0, 0) has no effect. In this implementation, 258 // setbuf(<anything>, n), for n > 0, calls reserve(n) on the underlying 262 basic_stringbuf<_CharT, _Traits, _Alloc>::setbuf(_CharT*, streamsize __n) { function in class:_Alloc
|
_streambuf.h | 124 virtual basic_streambuf<_CharT, _Traits>* setbuf(char_type*, streamsize); 143 { return this->setbuf(__s, __n); }
|
/system/extras/tests/bionic/libstdc++/ |
test_cstdio.cpp | 136 using std::setbuf;
|
/external/e2fsprogs/tests/progs/ |
test_icount.c | 264 setbuf(stdout, NULL); 265 setbuf(stderr, NULL);
|
/external/qemu/distrib/sdl-1.2.12/src/main/win32/ |
SDL_win32_main.c | 17 # define setbuf(f,b) macro 317 setbuf(stderr, NULL); /* No buffering */
|
/external/e2fsprogs/debugfs/ |
debugfs.o | |