Symbol: _IOLBF
usr/src/cmd/awk_xpg4/awk2.c
635
(void) setvbuf(fp, (char *)0, _IOLBF, 0);
usr/src/cmd/cmd-inet/usr.sbin/in.rdisc/in.rdisc.c
425
setvbuf(stdout, NULL, _IOLBF, 0);
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop.c
285
(void) setvbuf(stdout, NULL, _IOLBF, BUFSIZ);
usr/src/cmd/cpc/common/cpustat.c
293
(void) setvbuf(stdout, NULL, _IOLBF, 0);
usr/src/cmd/cpc/common/cputrack.c
241
(void) setvbuf(opts->log, NULL, _IOLBF, 0);
usr/src/cmd/mailx/main.c
308
setvbuf(stdout, NULL, _IOLBF, BUFSIZ);
usr/src/cmd/mailx/main.c
309
setvbuf(stderr, NULL, _IOLBF, BUFSIZ);
usr/src/cmd/pools/poolstat/poolstat.c
216
(void) setvbuf(stdout, NULL, _IOLBF, 0);
usr/src/cmd/prtfru/prtfru.c
1315
(void) setvbuf(stderr, NULL, _IOLBF, 0);
usr/src/cmd/raidz_test/raidz_test.c
738
(void) setvbuf(stdout, NULL, _IOLBF, 0);
usr/src/cmd/sgs/elfdump/common/main.c
716
(void) setvbuf(stdout, NULL, _IOLBF, 0);
usr/src/cmd/sgs/elfdump/common/main.c
717
(void) setvbuf(stderr, NULL, _IOLBF, 0);
usr/src/cmd/sgs/elfwrap/common/main.c
69
(void) setvbuf(stdout, NULL, _IOLBF, 0);
usr/src/cmd/sgs/elfwrap/common/main.c
70
(void) setvbuf(stderr, NULL, _IOLBF, 0);
usr/src/cmd/stat/fsstat/fsstat.c
830
(void) setvbuf(stdout, NULL, _IOLBF, 0);
usr/src/cmd/ztest/ztest.c
7250
(void) setvbuf(stdout, NULL, _IOLBF, 0);
usr/src/lib/libc/inc/stdiom.h
256
!(iop->_flag & (_IONBF | _IOLBF)))) \
usr/src/lib/libc/port/print/doprnt.c
566
if (!(iop->_flag & (_IOLBF|_IONBF)))
usr/src/lib/libc/port/print/doprnt.c
651
if (iop->_flag & (_IONBF | _IOLBF) && \
usr/src/lib/libc/port/stdio/__extensions.c
80
return (stream->_flag & _IOLBF);
usr/src/lib/libc/port/stdio/_filbuf.c
85
if (iop->_flag & (_IONBF | _IOLBF))
usr/src/lib/libc/port/stdio/_findbuf.c
113
iop->_flag |= _IOLBF;
usr/src/lib/libc/port/stdio/_flsbuf.c
52
switch (iop->_flag & (_IOFBF | _IOLBF | _IONBF |
usr/src/lib/libc/port/stdio/_flsbuf.c
58
case _IOLBF | _IOWRT: /* okay to do line-buffered case */
usr/src/lib/libc/port/stdio/_flsbuf.c
82
} while (iop->_flag & (_IOLBF | _IONBF));
usr/src/lib/libc/port/stdio/_wrtchk.c
56
!(iop->_flag & (_IOLBF | _IONBF))) {
usr/src/lib/libc/port/stdio/flush.c
202
if ((fp->_flag & (_IOLBF | _IOWRT | _IONBF)) ==
usr/src/lib/libc/port/stdio/flush.c
203
(_IOLBF | _IOWRT)) {
usr/src/lib/libc/port/stdio/flush.c
209
if ((fp->_flag & (_IOLBF | _IOWRT)) ==
usr/src/lib/libc/port/stdio/flush.c
210
(_IOLBF | _IOWRT)) {
usr/src/lib/libc/port/stdio/flush.c
552
if (iop->_flag & (_IOLBF | _IONBF))
usr/src/lib/libc/port/stdio/fputs.c
100
if (iop->_flag & _IOLBF)
usr/src/lib/libc/port/stdio/fwrite.c
82
if (iop->_flag & _IOLBF) {
usr/src/lib/libc/port/stdio/puts.c
97
if (stdout->_flag & (_IONBF | _IOLBF)) {
usr/src/lib/libc/port/stdio/setbuf.c
58
iop->_flag &= ~(_IOMYBUF | _IONBF | _IOLBF);
usr/src/lib/libc/port/stdio/setbuf.c
81
iop->_flag |= _IOLBF;
usr/src/lib/libc/port/stdio/setbuffer.c
59
(void) setvbuf(iop, NULL, _IOLBF, 128);
usr/src/lib/libc/port/stdio/setvbuf.c
51
iop->_flag &= ~(_IOMYBUF | _IONBF | _IOLBF);
usr/src/lib/libc/port/stdio/setvbuf.c
73
case _IOLBF:
usr/src/lib/libshare/common/libsharecore.c
547
(void) setvbuf(dfstab, NULL, _IOLBF, BUFSIZ * 8);
usr/src/lib/libshare/common/libsharecore.c
598
(void) setvbuf(dfstab, NULL, _IOLBF, BUFSIZ * 8);
usr/src/lib/libshare/common/libsharecore.c
707
(void) setvbuf(dfstab, NULL, _IOLBF, BUFSIZ * 8);
usr/src/lib/libxcurses/src/libc/xcurses/newterm.c
231
(void) SETVBUF(out_fp, (char *) 0, _IOLBF, BUFSIZ);
usr/src/lib/libxcurses2/src/libc/xcurses/newterm.c
225
(void) setvbuf(out_fp, (char *) 0, _IOLBF, BUFSIZ);
usr/src/test/libc-tests/tests/stdio/memstream.c
473
if (setvbuf(f, NULL, _IOLBF, BUFSIZ) != 0) {
usr/src/test/libc-tests/tests/stdio/memstream.c
523
if (setvbuf(f, NULL, _IOLBF, BUFSIZ) != 0) {
usr/src/test/libc-tests/tests/stdio/memstream.c
573
if (setvbuf(f, NULL, _IOLBF, BUFSIZ) != 0) {
usr/src/test/libc-tests/tests/stdio/memstream.c
623
if (setvbuf(f, NULL, _IOLBF, BUFSIZ) != 0) {
usr/src/test/libc-tests/tests/stdio/orientation_test.c
159
TEST_UNCHANGED(setvbuf(f, buffer, _IOLBF, BUFSIZ));
usr/src/test/libc-tests/tests/stdio/orientation_test.c
162
TEST_UNCHANGED(setvbuf(f, NULL, _IOLBF, 0));
usr/src/ucblib/libucb/inc/stdiom.h
118
!(iop->_flag & (_IONBF | _IOLBF)))) \
usr/src/ucblib/libucb/port/gen/setbuffer.c
101
iop->_flag |= _IOLBF|_IOMYBUF;
usr/src/ucblib/libucb/port/gen/setbuffer.c
59
iop->_flag &= ~(_IOMYBUF | _IONBF | _IOLBF);
usr/src/ucblib/libucb/port/stdio/doprnt.c
301
if (iop->_flag & (_IONBF | _IOLBF) &&