Symbol: _IONBF
usr/src/cmd/awk_xpg4/awk1.c
240
(void) setvbuf(stderr, NULL, _IONBF, 0);
usr/src/cmd/awk_xpg4/awk2.c
625
(void) setvbuf(fp, 0, _IONBF, 0);
usr/src/cmd/ipf/tools/ipmon.c
1619
setvbuf(log, NULL, _IONBF, 0);
usr/src/cmd/krb5/kinit/kinit.c
1325
setvbuf(stdin, 0, _IONBF, 0);
usr/src/cmd/krb5/kinit/kinit.c
1327
setvbuf(stdout, 0, _IONBF, 0);
usr/src/cmd/krb5/kinit/kinit.c
1329
setvbuf(stderr, 0, _IONBF, 0);
usr/src/cmd/raidz_test/raidz_test.c
636
(void) setvbuf(stdout, NULL, _IONBF, 0);
usr/src/lib/gss_mechs/mech_krb5/krb5/os/localaddr.c
1090
(void) setvbuf (stdout, (char *)NULL, _IONBF, 0);
usr/src/lib/gss_mechs/mech_krb5/krb5/os/prompter.c
66
if (setvbuf(fp, NULL, _IONBF, 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/print/doprnt.c
652
(iop->_flag & _IONBF || \
usr/src/lib/libc/port/print/vdprintf.c
36
(void) setvbuf(file, NULL, _IONBF, 0);
usr/src/lib/libc/port/stdio/_filbuf.c
114
if (flag & _IONBF)
usr/src/lib/libc/port/stdio/_filbuf.c
85
if (iop->_flag & (_IONBF | _IOLBF))
usr/src/lib/libc/port/stdio/_findbuf.c
112
if (!(iop->_flag & _IONBF) && tty != 0)
usr/src/lib/libc/port/stdio/_findbuf.c
73
if (iop->_flag & _IONBF) { /* need a small buffer, at least */
usr/src/lib/libc/port/stdio/_flsbuf.c
52
switch (iop->_flag & (_IOFBF | _IOLBF | _IONBF |
usr/src/lib/libc/port/stdio/_flsbuf.c
70
case _IONBF | _IOWRT: /* okay to do no-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/data.c
135
{ 0, NULL, NULL, _IOWRT|_IONBF, 2 },
usr/src/lib/libc/port/stdio/data.c
70
{ NULL, NULL, NULL, 0, 2, _IOWRT|_IONBF, RECURSIVEMUTEX,
usr/src/lib/libc/port/stdio/flush.c
202
if ((fp->_flag & (_IOLBF | _IOWRT | _IONBF)) ==
usr/src/lib/libc/port/stdio/flush.c
552
if (iop->_flag & (_IOLBF | _IONBF))
usr/src/lib/libc/port/stdio/flush.c
632
if (flag == 0 || (flag & _IONBF) != 0)
usr/src/lib/libc/port/stdio/flush.c
641
if (!(iop->_flag & _IONBF)) {
usr/src/lib/libc/port/stdio/flush.c
714
if (!(iop->_flag & _IONBF) && (iop->_flag & (_IOWRT | _IOREAD | _IORW)))
usr/src/lib/libc/port/stdio/flush.c
828
if (!(iop->_flag & _IONBF) && (iop->_flag & (_IOWRT | _IOREAD | _IORW)))
usr/src/lib/libc/port/stdio/fopen.c
104
if (!(iop->_flag & _IONBF) && (iop->_flag & (_IOWRT | _IOREAD | _IORW)))
usr/src/lib/libc/port/stdio/fputs.c
68
if ((iop->_flag & _IONBF) == 0) {
usr/src/lib/libc/port/stdio/fseek.c
63
if (ptrname == 1 && iop->_base && !(iop->_flag&_IONBF)) {
usr/src/lib/libc/port/stdio/fseeko.c
70
if (ptrname == 1 && iop->_base && !(iop->_flag&_IONBF)) {
usr/src/lib/libc/port/stdio/ftell.c
77
if (((iop->_flag & (_IOWRT | _IONBF)) == _IOWRT) &&
usr/src/lib/libc/port/stdio/fwrite.c
93
} else if (iop->_flag & _IONBF) {
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
60
iop->_flag |= _IONBF;
usr/src/lib/libc/port/stdio/setbuffer.c
44
(void) setvbuf(iop, NULL, _IONBF, 0);
usr/src/lib/libc/port/stdio/setvbuf.c
51
iop->_flag &= ~(_IOMYBUF | _IONBF | _IOLBF);
usr/src/lib/libc/port/stdio/setvbuf.c
54
case _IONBF:
usr/src/lib/libc/port/stdio/setvbuf.c
55
iop->_flag |= _IONBF; /* file is unbuffered */
usr/src/lib/libxcurses/src/libc/xcurses/newterm.c
218
(void) SETVBUF(in_fp, (char *) 0, _IONBF, BUFSIZ);
usr/src/lib/libxcurses2/src/libc/xcurses/newterm.c
212
(void) setvbuf(in_fp, (char *) 0, _IONBF, BUFSIZ);
usr/src/test/libc-tests/tests/stdio/ftell_ungetc.c
77
if (setvbuf(f, NULL, _IONBF, 0) != 0) {
usr/src/test/libc-tests/tests/stdio/memstream.c
1743
if (setvbuf(f, NULL, _IONBF, 0) != 0) {
usr/src/test/libc-tests/tests/stdio/memstream.c
1813
if (setvbuf(f, NULL, _IONBF, 0) != 0) {
usr/src/test/libc-tests/tests/stdio/memstream.c
491
if (setvbuf(f, NULL, _IONBF, 0) != 0) {
usr/src/test/libc-tests/tests/stdio/memstream.c
541
if (setvbuf(f, NULL, _IONBF, 0) != 0) {
usr/src/test/libc-tests/tests/stdio/memstream.c
591
if (setvbuf(f, NULL, _IONBF, 0) != 0) {
usr/src/test/libc-tests/tests/stdio/memstream.c
641
if (setvbuf(f, NULL, _IONBF, 0) != 0) {
usr/src/test/libc-tests/tests/stdio/orientation_test.c
158
TEST_UNCHANGED(setvbuf(f, buffer, _IONBF, BUFSIZ));
usr/src/test/libc-tests/tests/stdio/orientation_test.c
161
TEST_UNCHANGED(setvbuf(f, NULL, _IONBF, 0));
usr/src/ucblib/libucb/inc/stdiom.h
118
!(iop->_flag & (_IONBF | _IOLBF)))) \
usr/src/ucblib/libucb/port/gen/setbuffer.c
59
iop->_flag &= ~(_IOMYBUF | _IONBF | _IOLBF);
usr/src/ucblib/libucb/port/gen/setbuffer.c
61
iop->_flag |= _IONBF;
usr/src/ucblib/libucb/port/stdio/doprnt.c
301
if (iop->_flag & (_IONBF | _IOLBF) &&
usr/src/ucblib/libucb/port/stdio/doprnt.c
302
(iop->_flag & _IONBF ||