Searched refs:_IOREAD (Results 1 - 25 of 52) sorted by relevance

123

/illumos-gate/usr/src/lib/libbc/libc/stdio/common/
H A Diob.c34 { NULL, 0, NULL, 0, _IOREAD, 0 }, /* stdin */
39 { NULL, 0, NULL, 0, _IOREAD, 0 }, /* stdin */
43 { 0, NULL, NULL, 0, _IOREAD, 0 }, /* stdin */
H A Dungetc.c42 if((iop->_flag & (_IOREAD|_IORW)) == 0)
48 if((iop->_flag & _IOREAD) == 0 || iop->_ptr <= iop->_base)
H A Drew.c43 iop->_flag &= ~(_IOREAD | _IOWRT);
H A Dftell.c50 if(iop->_flag & _IOREAD)
H A Dfseek.c51 if(iop->_flag & _IOREAD) {
75 iop->_flag &= ~_IOREAD;
H A Dfdopen.c72 iop->_flag = _IOREAD;
H A Dfgets.c55 if ( !(iop->_flag & (_IOREAD|_IORW)) ) {
/illumos-gate/usr/src/ucblib/libucb/port/stdio/
H A Dsprintf.c59 siop._flag = _IOREAD;
H A Dvsprintf.c58 siop._flag = _IOREAD;
/illumos-gate/usr/src/lib/libbc/libc/stdio/4.2/
H A Dfilbuf.c50 if ( !(iop->_flag & _IOREAD) )
52 iop->_flag |= _IOREAD;
79 iop->_flag &= ~_IOREAD;
H A Dfopen.c79 iop->_flag = plus ? _IORW : (mode[0] == 'r') ? _IOREAD : _IOWRT;
/illumos-gate/usr/src/lib/libbc/libc/stdio/sys5/
H A Dfilbuf.c49 if ( !(iop->_flag & _IOREAD) )
51 iop->_flag |= _IOREAD;
77 iop->_flag &= ~_IOREAD;
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Dfseek.c58 if (!(iop->_flag & _IOREAD) && !(iop->_flag & (_IOWRT | _IORW))) {
64 if (iop->_flag & _IOREAD) {
77 iop->_flag &= ~(_IOREAD | _IOWRT);
H A Dfseeko.c65 if (!(iop->_flag & _IOREAD) && !(iop->_flag & (_IOWRT | _IORW))) {
71 if (iop->_flag & _IOREAD) {
84 iop->_flag &= ~(_IOREAD | _IOWRT);
H A Drewind.c63 iop->_flag &= ~(_IOREAD | _IOWRT);
H A D__extensions.c44 return (stream->_flag & _IOREAD);
64 return (stream->_flag & (_IOREAD|_IORW));
H A D_filbuf.c65 if (!(iop->_flag & _IOREAD)) /* check, correct permissions */
68 iop->_flag |= _IOREAD; /* change direction */
H A Dfdopen.c78 flag = _IOREAD;
H A Dfopen.c91 if (!(iop->_flag & _IONBF) && (iop->_flag & (_IOWRT | _IOREAD | _IORW)))
145 iop->_flag |= _IOREAD;
155 iop->_flag = (iop->_flag & ~(_IOREAD | _IOWRT)) | _IORW;
159 iop->_flag = _IOREAD;
H A Dungetc.c66 if ((iop->_flag & _IOREAD) == 0) /* basically a no-op on write stream */
H A Ddata.c68 { NULL, NULL, NULL, 0, 0, _IOREAD, RECURSIVEMUTEX, DEFAULTMBSTATE },
133 { 0, NULL, NULL, _IOREAD, 0 },
/illumos-gate/usr/src/lib/libc/port/print/
H A Dsprintf.c53 siop._flag = _IOREAD; /* distinguish dummy file descriptor */
H A Dvsprintf.c66 siop._flag = _IOREAD; /* distinguish dummy file descriptor */
/illumos-gate/usr/src/ucblib/libcurses/
H A Dscanw.c79 junk._flag = _IOREAD|_IOWRT;
/illumos-gate/usr/src/lib/libbc/inc/include/
H A Dstdio.h44 #define _IOREAD 01 macro

Completed in 51 milliseconds

123