/illumos-gate/usr/src/lib/libc/port/stdio/ |
H A D | _flsbuf.c | 52 switch (iop->_flag & (_IOFBF | _IOLBF | _IONBF | in _flsbuf() 58 case _IOLBF | _IOWRT: /* okay to do line-buffered case */ in _flsbuf() 82 } while (iop->_flag & (_IOLBF | _IONBF)); in _flsbuf()
|
H A D | setbuf.c | 58 iop->_flag &= ~(_IOMYBUF | _IONBF | _IOLBF); in setbuf() 81 iop->_flag |= _IOLBF; in setbuf()
|
H A D | setvbuf.c | 51 iop->_flag &= ~(_IOMYBUF | _IONBF | _IOLBF); in setvbuf() 73 case _IOLBF: in setvbuf()
|
H A D | setbuffer.c | 59 (void) setvbuf(iop, NULL, _IOLBF, 128); in setlinebuf()
|
H A D | _wrtchk.c | 56 !(iop->_flag & (_IOLBF | _IONBF))) { in _wrtchk()
|
H A D | flush.c | 201 if ((fp->_flag & (_IOLBF | _IOWRT | _IONBF)) == in _flushlbf() 202 (_IOLBF | _IOWRT)) { in _flushlbf() 208 if ((fp->_flag & (_IOLBF | _IOWRT)) == in _flushlbf() 209 (_IOLBF | _IOWRT)) { in _flushlbf() 551 if (iop->_flag & (_IOLBF | _IONBF)) in _xflsbuf()
|
H A D | __extensions.c | 80 return (stream->_flag & _IOLBF); in __flbf()
|
H A D | _filbuf.c | 85 if (iop->_flag & (_IONBF | _IOLBF)) in _filbuf()
|
H A D | puts.c | 97 if (stdout->_flag & (_IONBF | _IOLBF)) { in puts()
|
H A D | _findbuf.c | 113 iop->_flag |= _IOLBF; in _findbuf()
|
H A D | fputs.c | 100 if (iop->_flag & _IOLBF) in fputs()
|
H A D | fwrite.c | 82 if (iop->_flag & _IOLBF) { in _fwrite_unlocked()
|
/illumos-gate/usr/src/ucblib/libucb/port/gen/ |
H A D | setbuffer.c | 59 iop->_flag &= ~(_IOMYBUF | _IONBF | _IOLBF); in setbuffer() 101 iop->_flag |= _IOLBF|_IOMYBUF; in setlinebuf()
|
/illumos-gate/usr/src/cmd/sgs/elfwrap/common/ |
H A D | main.c | 69 (void) setvbuf(stdout, NULL, _IOLBF, 0); in main() 70 (void) setvbuf(stderr, NULL, _IOLBF, 0); in main()
|
/illumos-gate/usr/src/contrib/ast/src/lib/libast/stdio/ |
H A D | setvbuf.c | 31 if (type == _IOLBF) in setvbuf()
|
/illumos-gate/usr/src/cmd/mailx/ |
H A D | main.c | 308 setvbuf(stdout, NULL, _IOLBF, BUFSIZ); in main() 309 setvbuf(stderr, NULL, _IOLBF, BUFSIZ); in main()
|
/illumos-gate/usr/src/stand/lib/sa/ |
H A D | stdio.h | 56 #define _IOLBF 0100 /* line buffered */ macro
|
/illumos-gate/usr/src/test/libc-tests/tests/stdio/ |
H A D | orientation_test.c | 159 TEST_UNCHANGED(setvbuf(f, buffer, _IOLBF, BUFSIZ)); in main() 162 TEST_UNCHANGED(setvbuf(f, NULL, _IOLBF, 0)); in main()
|
H A D | memstream.c | 473 if (setvbuf(f, NULL, _IOLBF, BUFSIZ) != 0) { in fmemopen_fill_lbuf() 523 if (setvbuf(f, NULL, _IOLBF, BUFSIZ) != 0) { in fmemopen_fwrite_lbuf() 573 if (setvbuf(f, NULL, _IOLBF, BUFSIZ) != 0) { in fmemopen_alt_fwrite_lbuf() 623 if (setvbuf(f, NULL, _IOLBF, BUFSIZ) != 0) { in fmemopen_fputs_lbuf()
|
/illumos-gate/usr/src/ucblib/libucb/inc/ |
H A D | stdiom.h | 118 !(iop->_flag & (_IONBF | _IOLBF)))) \
|
/illumos-gate/usr/src/ucbhead/ |
H A D | stdio.h | 92 #define _IOLBF 0100 /* line buffered */ macro
|
/illumos-gate/usr/src/head/iso/ |
H A D | stdio_iso.h | 132 #define _IOLBF 0100 /* line buffered */ macro
|
/illumos-gate/usr/src/lib/libc/inc/ |
H A D | stdiom.h | 256 !(iop->_flag & (_IONBF | _IOLBF)))) \
|
/illumos-gate/usr/src/cmd/sgs/elfdump/common/ |
H A D | main.c | 716 (void) setvbuf(stdout, NULL, _IOLBF, 0); in main() 717 (void) setvbuf(stderr, NULL, _IOLBF, 0); in main()
|
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | newterm.c | 231 (void) SETVBUF(out_fp, (char *) 0, _IOLBF, BUFSIZ);
|