/titanic_41/usr/src/lib/libbc/libc/stdio/4.2/ |
H A D | flsbuf.c | 130 if ( (iop->_flag & (_IOLBF | _IOWRT | _IOEOF)) == (_IOLBF | _IOWRT) ) { in _flsbuf() 151 } while ( (iop->_flag & (_IONBF | _IOLBF)) ); in _flsbuf() 186 iop->_cnt = (iop->_flag &(_IONBF | _IOLBF)) ? 0 : iop->_bufsiz; in _xflsbuf() 213 if (iop->_ptr == iop->_base && !(iop->_flag & (_IONBF | _IOLBF)) ) { in _wrtchk() 240 iop->_flag |= _IOLBF; in _findbuf() 258 iop->_flag &= ~_IOLBF; in _findbuf()
|
H A D | filbuf.c | 63 if (stdout->_flag&_IOLBF) in _filbuf() 65 if (stderr->_flag&_IOLBF) in _filbuf()
|
H A D | setbuf.c | 49 iop->_flag &= ~(_IOMYBUF | _IONBF | _IOLBF);
|
/titanic_41/usr/src/lib/libbc/libc/stdio/sys5/ |
H A D | flsbuf.c | 133 if ( (iop->_flag & (_IOLBF | _IOWRT | _IOEOF)) == (_IOLBF | _IOWRT) ) { in _flsbuf() 154 } while ( (iop->_flag & (_IONBF | _IOLBF)) ); in _flsbuf() 190 iop->_cnt = (iop->_flag &(_IONBF | _IOLBF)) ? 0 : iop->_bufsiz; in _xflsbuf() 218 if (iop->_ptr == iop->_base && !(iop->_flag & (_IONBF | _IOLBF)) ) { in _wrtchk() 245 iop->_flag |= _IOLBF; in _findbuf() 263 iop->_flag &= ~_IOLBF; in _findbuf()
|
H A D | setbuf.c | 49 iop->_flag &= ~(_IOMYBUF | _IONBF | _IOLBF); 58 iop->_flag |= _IOLBF;
|
H A D | filbuf.c | 64 if (iop->_flag & (_IOLBF | _IONBF)) in _filbuf() 86 if (iop->_flag & _IOLBF) in lbfflush()
|
/titanic_41/usr/src/lib/libc/port/stdio/ |
H A D | _flsbuf.c | 52 switch (iop->_flag & (_IOFBF | _IOLBF | _IONBF | in _flsbuf() 59 case _IOLBF | _IOWRT: /* okay to do line-buffered case */ in _flsbuf() 83 } while (iop->_flag & (_IOLBF | _IONBF)); in _flsbuf()
|
H A D | setbuf.c | 55 iop->_flag &= ~(_IOMYBUF | _IONBF | _IOLBF); in setbuf() 74 iop->_flag |= _IOLBF; in setbuf()
|
H A D | setvbuf.c | 53 iop->_flag &= ~(_IOMYBUF | _IONBF | _IOLBF); in setvbuf() 77 case _IOLBF: in setvbuf()
|
H A D | setbuffer.c | 61 (void) setvbuf(iop, NULL, _IOLBF, 128); in setlinebuf()
|
H A D | flush.c | 198 if ((fp->_flag & (_IOLBF | _IOWRT | _IONBF)) == in _flushlbf() 199 (_IOLBF | _IOWRT)) { in _flushlbf() 205 if ((fp->_flag & (_IOLBF | _IOWRT)) == in _flushlbf() 206 (_IOLBF | _IOWRT)) { in _flushlbf() 539 if (iop->_flag & (_IOLBF | _IONBF)) in _xflsbuf()
|
H A D | _wrtchk.c | 58 !(iop->_flag & (_IOLBF | _IONBF))) { in _wrtchk()
|
H A D | __extensions.c | 82 return (stream->_flag & _IOLBF); in __flbf()
|
/titanic_41/usr/src/lib/libbc/libc/stdio/common/ |
H A D | setbuffer.c | 52 iop->_flag &= ~(_IOMYBUF|_IONBF|_IOLBF); in setbuffer() 81 iop->_flag |= _IOLBF|_IOMYBUF; in setlinebuf()
|
H A D | setvbuf.c | 51 iop->_flag &= ~(_IOMYBUF | _IONBF | _IOLBF); 61 case _IOLBF:
|
H A D | stdiom.h | 39 && !(iop->_flag & (_IONBF | _IOLBF)))) \
|
H A D | putc.c | 30 (((p)->_flag & _IOLBF) && -(p)->_cnt < (p)->_bufsiz ?\
|
H A D | puts.c | 68 if (stdout->_flag & (_IONBF | _IOLBF)) /* flush line */
|
/titanic_41/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()
|
/titanic_41/usr/src/lib/libbc/inc/include/ |
H A D | stdio.h | 51 #define _IOLBF 0200 macro 68 (((p)->_flag & _IOLBF) && -(p)->_cnt < (p)->_bufsiz ?\
|
/titanic_41/usr/src/lib/libbc/inc/5include/ |
H A D | stdio.h | 92 #define _IOLBF 0200 macro 162 (((p)->_flag & _IOLBF) && -(p)->_cnt < (p)->_bufsiz ?\
|
/titanic_41/usr/src/cmd/sgs/elfwrap/common/ |
H A D | main.c | 70 (void) setvbuf(stdout, NULL, _IOLBF, 0); in main() 71 (void) setvbuf(stderr, NULL, _IOLBF, 0); in main()
|
/titanic_41/usr/src/lib/libast/common/stdio/ |
H A D | setvbuf.c | 31 if (type == _IOLBF) in setvbuf()
|
/titanic_41/usr/src/cmd/mailx/ |
H A D | main.c | 307 setvbuf(stdout, NULL, _IOLBF, BUFSIZ); in main() 308 setvbuf(stderr, NULL, _IOLBF, BUFSIZ); in main()
|
/titanic_41/usr/src/stand/lib/sa/ |
H A D | stdio.h | 56 #define _IOLBF 0100 /* line buffered */ macro
|