Symbol: setvbuf
bin/ed/buf.c
262
setvbuf(stdout, NULL, _IOLBF, 0);
crypto/krb5/src/clients/kinit/kinit.c
866
setvbuf(stdin, 0, _IONBF, 0);
crypto/krb5/src/clients/kinit/kinit.c
868
setvbuf(stdout, 0, _IONBF, 0);
crypto/krb5/src/clients/kinit/kinit.c
870
setvbuf(stderr, 0, _IONBF, 0);
crypto/krb5/src/kadmin/server/ovsec_kadmd.c
351
setvbuf(stderr, NULL, _IONBF, 0);
crypto/krb5/src/lib/krb5/os/localaddr.c
1095
(void) setvbuf (stdout, (char *)NULL, _IONBF, 0);
crypto/krb5/src/lib/krb5/os/prompter.c
69
if (setvbuf(fp, NULL, _IONBF, 0))
crypto/krb5/src/util/ss/listen.c
38
setvbuf(stdin, 0, _IONBF, 0);
crypto/openssh/openbsd-compat/bsd-misc.h
54
#define setlinebuf(a) (setvbuf((a), NULL, _IOLBF, 0))
crypto/openssh/regress/unittests/test_helper/test_helper.c
175
setvbuf(stdout, 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
3037
setvbuf(out, NULL, _IOLBF, 0);
crypto/openssh/ssh-keygen.c
3104
setvbuf(out, NULL, _IOLBF, 0);
include/stdio.h
300
int setvbuf(FILE * __restrict, char * __restrict, int, size_t);
lib/libc/gen/getutxent.c
82
(void)setvbuf(uf, NULL, _IOFBF,
lib/libc/stdio/fmemopen.c
158
setvbuf(f, NULL, _IONBF, 0);
lib/libc/stdio/setbuf.c
41
(void) setvbuf(fp, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
lib/libc/stdio/setbuffer.c
41
(void)setvbuf(fp, buf, buf ? _IOFBF : _IONBF, (size_t)size);
lib/libc/stdio/setbuffer.c
51
return (setvbuf(fp, (char *)NULL, _IOLBF, (size_t)0));
lib/libc/tests/stdio/flushlbuf_test.c
115
ATF_REQUIRE(setvbuf(f, buf, _IOLBF, BUFSIZE) == 0);
lib/libc/tests/stdio/flushlbuf_test.c
60
ATF_REQUIRE(setvbuf(f, buf, _IOLBF, BUFSIZE) == 0);
lib/libc/tests/stdio/getdelim_test.c
343
setvbuf(fp, (char *)NULL, buf_mode, 0);
lib/libstdbuf/stdbuf.c
95
if (setvbuf(s, NULL, mode, bufsize) != 0)
lib/msun/tests/fenv_test.c
70
setvbuf(stdout, NULL, _IONBF, 0);
sbin/ipf/ipmon/ipmon.c
1668
setvbuf(config.log, NULL, _IONBF, 0);
share/examples/ppi/ppilcd.c
157
setvbuf(stdin, NULL, _IONBF, 0);
tests/sys/audit/utils.c
274
ATF_REQUIRE_EQ(0, setvbuf(pipestream, NULL, _IONBF, 0));
tools/regression/fsx/fsx.c
995
setvbuf(stdout, (char *)0, _IOLBF, 0); /* line buffered stdout */
usr.bin/cmp/special.c
60
(void)setvbuf(fp1, NULL, _IOFBF, 65536);
usr.bin/cmp/special.c
63
(void)setvbuf(fp2, NULL, _IOFBF, 65536);
usr.bin/fetch/fetch.c
754
setvbuf(f, NULL, _IOFBF, B_size);
usr.bin/logger/logger.c
121
setvbuf(stdin, 0, _IONBF, 0);
usr.bin/morse/morse.c
317
setvbuf(stdout, 0, _IONBF, 0);
usr.bin/patch/patch.c
159
setvbuf(stdout, NULL, _IOLBF, 0);
usr.bin/patch/patch.c
160
setvbuf(stderr, NULL, _IOLBF, 0);
usr.bin/sed/main.c
155
if(setvbuf(stdout, NULL, _IOLBF, 0) != 0)
usr.bin/sed/main.c
162
if(setvbuf(stdout, NULL, _IONBF, 0) != 0)
usr.bin/talk/io.c
100
setvbuf(sockfp, NULL, _IONBF, 0);
usr.bin/talk/io.c
101
setvbuf(stdin, NULL, _IONBF, 0);
usr.bin/time/time.c
109
setvbuf(out, (char *)NULL, _IONBF, (size_t)0);
usr.sbin/traceroute6/traceroute6.c
618
setvbuf(stdout, NULL, _IOLBF, BUFSIZ);