Symbol: setvbuf
bin/cpdup/cpdup.c
258
setvbuf(stdout, NULL, _IOLBF, 0);
bin/ed/buf.c
262
setvbuf(stdout, NULL, _IOLBF, 0);
crypto/libressl/apps/openssl/apps.c
594
setvbuf(stdin, NULL, _IONBF, 0);
crypto/libressl/apps/openssl/apps.c
649
setvbuf(stdin, NULL, _IONBF, 0);
crypto/libressl/apps/openssl/apps.c
708
setvbuf(stdin, NULL, _IONBF, 0);
crypto/libressl/apps/openssl/enc.c
475
setvbuf(stdin, (char *) NULL, _IONBF, 0);
crypto/libressl/apps/openssl/enc.c
527
setvbuf(stdout, (char *)NULL, _IONBF, 0);
crypto/openssh/sftp.c
2289
setvbuf(stdout, NULL, _IOLBF, 0);
crypto/openssh/sftp.c
2290
setvbuf(infile, NULL, _IOLBF, 0);
crypto/openssh/ssh-add.c
832
setvbuf(stdout, NULL, _IOLBF, 0);
crypto/openssh/ssh-keygen.c
3007
setvbuf(out, NULL, _IOLBF, 0);
crypto/openssh/ssh-keygen.c
3072
setvbuf(out, NULL, _IOLBF, 0);
games/morse/morse.c
323
setvbuf(stdout, 0, _IONBF, 0);
include/stdio.h
252
int setvbuf(FILE * __restrict, char * __restrict, int, size_t);
lib/libc/stdio/setbuf.c
43
setvbuf(fp, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
lib/libc/stdio/setbuffer.c
43
setvbuf(fp, buf, buf ? _IOFBF : _IONBF, (size_t)size);
lib/libc/stdio/setbuffer.c
53
return (setvbuf(fp, NULL, _IOLBF, (size_t)0));
lib/libssh/openbsd-compat/bsd-misc.h
54
#define setlinebuf(a) (setvbuf((a), NULL, _IOLBF, 0))
lib/libstdbuf/stdbuf.c
97
if (setvbuf(s, NULL, mode, bufsize) != 0)
sbin/svc/remote.c
120
setvbuf(conn->fpr, NULL, _IOFBF, 0);
sbin/svc/remote.c
121
setvbuf(conn->fpw, NULL, _IOFBF, 0);
sbin/svc/remote.c
269
setvbuf(conn->fpr, NULL, _IOFBF, 0);
sbin/svc/remote.c
270
setvbuf(conn->fpw, NULL, _IOFBF, 0);
share/examples/ppi/ppilcd.c
160
setvbuf(stdin, NULL, _IONBF, 0);
test/stress/fsx/fsx.c
983
setvbuf(stdout, NULL, _IOLBF, 0); /* line buffered stdout */
usr.bin/dfregress/userland.c
184
setvbuf(stdout, NULL, _IONBF, 0);
usr.bin/dfregress/userland.c
189
setvbuf((unify_output) ? stdout : stderr,
usr.bin/fetch/fetch.c
762
setvbuf(f, NULL, _IOFBF, B_size);
usr.bin/patch/patch.c
160
setvbuf(stdout, NULL, _IOLBF, 0);
usr.bin/patch/patch.c
161
setvbuf(stderr, NULL, _IOLBF, 0);
usr.bin/sed/main.c
163
if(setvbuf(stdout, NULL, _IOLBF, 0) != 0)
usr.bin/sed/main.c
170
if(setvbuf(stdout, NULL, _IONBF, 0) != 0)
usr.bin/time/time.c
110
setvbuf(out, NULL, _IONBF, (size_t)0);
usr.bin/tip/cmds.c
169
if (setvbuf(ff, NULL, _IOFBF, cnt) != 0) {
usr.bin/tip/cmds.c
254
if (setvbuf(ff, NULL, _IOFBF, cnt) != 0) {
usr.bin/top/os.h
57
#define setbuffer(f, b, s) setvbuf((f), (b), (b) ? _IOFBF : _IONBF, (s))
usr.bin/top/top.c
775
setvbuf(stdout, stdoutbuf, _IOFBF, BUFFERSIZE);
usr.sbin/installer/libdfui/conn_npipe.c
304
setvbuf(T_NPIPE(c)->out, NULL, _IONBF, 0);
usr.sbin/installer/libdfui/conn_npipe.c
99
setvbuf(T_NPIPE(c)->out, NULL, _IONBF, 0);
usr.sbin/installer/libdfui/connection.c
80
setvbuf(dfui_debug_file, NULL, _IOLBF, 0);
usr.sbin/pflogd/pflogd.c
332
if (setvbuf(fp, NULL, _IONBF, 0)) {
usr.sbin/traceroute6/traceroute6.c
537
setvbuf(stdout, NULL, _IOLBF, BUFSIZ);