Symbol: setbuf
headers/cpp/builtinbuf.h
45
virtual streambuf* setbuf(char*, int);
headers/cpp/fstream.h
51
void setbuf(char *ptr, int len) { rdbuf()->setbuf(ptr, len); }
headers/cpp/fstream.h
55
fstreambase& raw() { rdbuf()->setbuf(NULL, 0); return *this; }
headers/cpp/parsestream.h
74
virtual streambuf* setbuf(char* p, int len);
headers/cpp/streambuf.h
337
virtual streambuf* setbuf(char* p, int len);
headers/cpp/streambuf.h
417
virtual streambuf* setbuf(char* p, int len);
headers/posix/stdio.h
135
extern void setbuf (FILE *file, char *buff);
headers/private/kernel/boot/stdio.h
69
extern void setbuf (FILE *file, char *buff);
src/bin/i2c/i2c.cpp
51
setbuf(stdout, NULL);
src/bin/network/ping/ping.c
335
setbuf(stdout, (char *)NULL);
src/bin/network/ping/ping6.c
429
setbuf(stdout, (char *)NULL);
src/bin/network/telnet/main.c
124
setbuf(stdout, NULL);
src/bin/network/telnet/main.c
125
setbuf(stderr, NULL);
src/bin/unzip/fileio.c
424
setbuf(G.outfile, (char *)NULL); /* make output unbuffered */
src/bin/unzip/fileio.c
430
setbuf(G.outfile, (char *)slide);
src/libs/stdc++/legacy/filebuf.cc
67
setbuf(p, len);
src/libs/stdc++/legacy/stdiostream.cc
156
setbuf(NULL, 0);
src/libs/stdc++/legacy/stdiostream.cc
60
setbuf(NULL, 0);
src/libs/stdc++/legacy/streambuf.cc
170
{ return ((streambuf*)fp)->setbuf(buf, n); }
src/libs/stdc++/legacy/streambuf.cc
191
JUMP_INIT(setbuf, _IO_sb_setbuf),
src/system/libroot/posix/glibc/libio/fileops.c
1631
JUMP_INIT(setbuf, _IO_new_file_setbuf),
src/system/libroot/posix/glibc/libio/fileops.c
1656
JUMP_INIT(setbuf, (_IO_setbuf_t) _IO_file_setbuf_mmap),
src/system/libroot/posix/glibc/libio/fileops.c
1680
JUMP_INIT(setbuf, (_IO_setbuf_t) _IO_file_setbuf_mmap),
src/system/libroot/posix/glibc/libio/iofopncook.c
131
JUMP_INIT(setbuf, _IO_file_setbuf),
src/system/libroot/posix/glibc/libio/iofopncook.c
250
JUMP_INIT(setbuf, _IO_file_setbuf),
src/system/libroot/posix/glibc/libio/iopopen.c
364
JUMP_INIT(setbuf, _IO_new_file_setbuf),
src/system/libroot/posix/glibc/libio/memstream.c
48
JUMP_INIT (setbuf, _IO_default_setbuf),
src/system/libroot/posix/glibc/libio/stdio.h
342
extern void setbuf (FILE *__restrict __stream, char *__restrict __buf) __THROW;
src/system/libroot/posix/glibc/libio/strops.c
362
JUMP_INIT(setbuf, _IO_default_setbuf),
src/system/libroot/posix/glibc/libio/vsnprintf.c
81
JUMP_INIT(setbuf, _IO_default_setbuf),
src/system/libroot/posix/glibc/libio/vswprintf.c
80
JUMP_INIT(setbuf, _IO_default_setbuf),
src/system/libroot/posix/glibc/libio/wfileops.c
1062
JUMP_INIT(setbuf, _IO_new_file_setbuf),
src/system/libroot/posix/glibc/libio/wfileops.c
1088
JUMP_INIT(setbuf, _IO_file_setbuf_mmap),
src/system/libroot/posix/glibc/libio/wfileops.c
1112
JUMP_INIT(setbuf, _IO_file_setbuf_mmap),
src/system/libroot/posix/glibc/libio/wstrops.c
361
JUMP_INIT(setbuf, _IO_default_setbuf),
src/system/libroot/posix/glibc/stdio-common/vfprintf.c
2255
JUMP_INIT (setbuf, _IO_default_setbuf),
src/system/libroot/posix/glibc/stdio-common/vfprintf.c
2277
JUMP_INIT (setbuf, _IO_default_setbuf),
src/tests/add-ons/kernel/debugger/c++filt.cpp
132
setbuf(stdout, NULL);