Searched refs:_IOLBF (Results 1 - 25 of 62) sorted by relevance

123

/illumos-gate/usr/src/lib/libbc/libc/stdio/common/
H A Dsetbuffer.c52 iop->_flag &= ~(_IOMYBUF|_IONBF|_IOLBF);
81 iop->_flag |= _IOLBF|_IOMYBUF;
H A Dputc.c30 (((p)->_flag & _IOLBF) && -(p)->_cnt < (p)->_bufsiz ?\
H A Dstdiom.h39 && !(iop->_flag & (_IONBF | _IOLBF)))) \
H A Dsetvbuf.c51 iop->_flag &= ~(_IOMYBUF | _IONBF | _IOLBF);
61 case _IOLBF:
H A Dputs.c68 if (stdout->_flag & (_IONBF | _IOLBF)) /* flush line */
H A Dfwrite.c92 if (iop->_flag & (_IOLBF | _IONBF)) {
/illumos-gate/usr/src/lib/libbc/libc/stdio/sys5/
H A Dsetbuf.c49 iop->_flag &= ~(_IOMYBUF | _IONBF | _IOLBF);
58 iop->_flag |= _IOLBF;
H A Dfilbuf.c64 if (iop->_flag & (_IOLBF | _IONBF))
86 if (iop->_flag & _IOLBF)
H A Dflsbuf.c133 if ( (iop->_flag & (_IOLBF | _IOWRT | _IOEOF)) == (_IOLBF | _IOWRT) ) {
154 } while ( (iop->_flag & (_IONBF | _IOLBF)) );
190 iop->_cnt = (iop->_flag &(_IONBF | _IOLBF)) ? 0 : iop->_bufsiz;
218 if (iop->_ptr == iop->_base && !(iop->_flag & (_IONBF | _IOLBF)) ) {
245 iop->_flag |= _IOLBF;
263 iop->_flag &= ~_IOLBF;
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Dsetbuffer.c61 (void) setvbuf(iop, NULL, _IOLBF, 128);
H A D_flsbuf.c52 switch (iop->_flag & (_IOFBF | _IOLBF | _IONBF |
59 case _IOLBF | _IOWRT: /* okay to do line-buffered case */
83 } while (iop->_flag & (_IOLBF | _IONBF));
H A D_wrtchk.c58 !(iop->_flag & (_IOLBF | _IONBF))) {
H A Dsetbuf.c55 iop->_flag &= ~(_IOMYBUF | _IONBF | _IOLBF);
74 iop->_flag |= _IOLBF;
H A Dsetvbuf.c53 iop->_flag &= ~(_IOMYBUF | _IONBF | _IOLBF);
77 case _IOLBF:
H A D__extensions.c82 return (stream->_flag & _IOLBF);
H A D_filbuf.c88 if (iop->_flag & (_IONBF | _IOLBF))
/illumos-gate/usr/src/lib/libbc/libc/stdio/4.2/
H A Dflsbuf.c130 if ( (iop->_flag & (_IOLBF | _IOWRT | _IOEOF)) == (_IOLBF | _IOWRT) ) {
151 } while ( (iop->_flag & (_IONBF | _IOLBF)) );
186 iop->_cnt = (iop->_flag &(_IONBF | _IOLBF)) ? 0 : iop->_bufsiz;
213 if (iop->_ptr == iop->_base && !(iop->_flag & (_IONBF | _IOLBF)) ) {
240 iop->_flag |= _IOLBF;
258 iop->_flag &= ~_IOLBF;
H A Dsetbuf.c49 iop->_flag &= ~(_IOMYBUF | _IONBF | _IOLBF);
H A Dfilbuf.c63 if (stdout->_flag&_IOLBF)
65 if (stderr->_flag&_IOLBF)
/illumos-gate/usr/src/lib/libast/common/stdio/
H A Dsetvbuf.c31 if (type == _IOLBF)
/illumos-gate/usr/src/lib/libbc/inc/include/
H A Dstdio.h51 #define _IOLBF 0200 macro
68 (((p)->_flag & _IOLBF) && -(p)->_cnt < (p)->_bufsiz ?\
/illumos-gate/usr/src/ucblib/libucb/port/gen/
H A Dsetbuffer.c59 iop->_flag &= ~(_IOMYBUF | _IONBF | _IOLBF);
101 iop->_flag |= _IOLBF|_IOMYBUF;
/illumos-gate/usr/src/stand/lib/sa/
H A Dstdio.h56 #define _IOLBF 0100 /* line buffered */ macro
/illumos-gate/usr/src/cmd/sgs/elfwrap/common/
H A Dmain.c70 (void) setvbuf(stdout, NULL, _IOLBF, 0);
71 (void) setvbuf(stderr, NULL, _IOLBF, 0);
/illumos-gate/usr/src/lib/libbc/inc/5include/
H A Dstdio.h80 * _IOLBF means that a file's output will be buffered line by line
81 * In addition to being flags, _IONBF, _IOLBF and _IOFBF are possible
92 #define _IOLBF 0200 macro
162 (((p)->_flag & _IOLBF) && -(p)->_cnt < (p)->_bufsiz ?\

Completed in 68 milliseconds

123