/titanic_41/usr/src/lib/libbc/libc/stdio/common/ |
H A D | iob.c | 34 { 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 D | ungetc.c | 42 if((iop->_flag & (_IOREAD|_IORW)) == 0) 48 if((iop->_flag & _IOREAD) == 0 || iop->_ptr <= iop->_base)
|
H A D | fseek.c | 51 if(iop->_flag & _IOREAD) { 75 iop->_flag &= ~_IOREAD;
|
H A D | rew.c | 43 iop->_flag &= ~(_IOREAD | _IOWRT);
|
H A D | ftell.c | 50 if(iop->_flag & _IOREAD)
|
H A D | fdopen.c | 72 iop->_flag = _IOREAD;
|
H A D | scanf.c | 88 if ( !(iop->_flag & (_IOREAD|_IORW)) ) { in fscanf() 124 strbuf._flag = _IOREAD|_IOSTRG; in sscanf()
|
H A D | fgets.c | 55 if ( !(iop->_flag & (_IOREAD|_IORW)) ) {
|
/titanic_41/usr/src/lib/libc/port/stdio/ |
H A D | fseek.c | 58 if (!(iop->_flag & _IOREAD) && !(iop->_flag & (_IOWRT | _IORW))) { in fseek() 64 if (iop->_flag & _IOREAD) { in fseek() 77 iop->_flag &= ~(_IOREAD | _IOWRT); in fseek()
|
H A D | fseeko.c | 65 if (!(iop->_flag & _IOREAD) && !(iop->_flag & (_IOWRT | _IORW))) { in fseeko64() 71 if (iop->_flag & _IOREAD) { in fseeko64() 84 iop->_flag &= ~(_IOREAD | _IOWRT); in fseeko64()
|
H A D | fopen.c | 91 if (!(iop->_flag & _IONBF) && (iop->_flag & (_IOWRT | _IOREAD | _IORW))) in _freopen_null() 145 iop->_flag |= _IOREAD; in _freopen_null() 155 iop->_flag = (iop->_flag & ~(_IOREAD | _IOWRT)) | _IORW; in _freopen_null() 159 iop->_flag = _IOREAD; in _freopen_null()
|
H A D | __extensions.c | 44 return (stream->_flag & _IOREAD); in __freading() 64 return (stream->_flag & (_IOREAD|_IORW)); in __freadable()
|
H A D | _filbuf.c | 65 if (!(iop->_flag & _IOREAD)) /* check, correct permissions */ in _filbuf() 68 iop->_flag |= _IOREAD; /* change direction */ in _filbuf()
|
H A D | data.c | 68 { NULL, NULL, NULL, 0, 0, _IOREAD, RECURSIVEMUTEX, DEFAULTMBSTATE }, 133 { 0, NULL, NULL, _IOREAD, 0 },
|
H A D | flush.c | 638 } else if (iop->_flag & _IOREAD) { in _fflush_l_iops() 670 iop->_flag &= ~_IOREAD; in _fflush_u() 701 if (!(iop->_flag & _IONBF) && (iop->_flag & (_IOWRT | _IOREAD | _IORW))) in fclose() 752 (iop->_flag & (_IOWRT | _IOREAD | _IORW))) in fcloseall() 782 if (!(iop->_flag & _IONBF) && (iop->_flag & (_IOWRT | _IOREAD | _IORW))) in close_fd()
|
H A D | rewind.c | 63 iop->_flag &= ~(_IOREAD | _IOWRT); in _rewind_unlocked()
|
H A D | ungetc.c | 66 if ((iop->_flag & _IOREAD) == 0) /* basically a no-op on write stream */ in _ungetc_unlocked()
|
H A D | fdopen.c | 78 flag = _IOREAD; in fdopen()
|
/titanic_41/usr/src/lib/libbc/libc/stdio/4.2/ |
H A D | filbuf.c | 50 if ( !(iop->_flag & _IOREAD) ) in _filbuf() 52 iop->_flag |= _IOREAD; in _filbuf() 79 iop->_flag &= ~_IOREAD; in _filbuf()
|
/titanic_41/usr/src/lib/libbc/libc/stdio/sys5/ |
H A D | filbuf.c | 49 if ( !(iop->_flag & _IOREAD) ) in _filbuf() 51 iop->_flag |= _IOREAD; in _filbuf() 77 iop->_flag &= ~_IOREAD; in _filbuf()
|
/titanic_41/usr/src/ucblib/libucb/port/stdio/ |
H A D | vsprintf.c | 58 siop._flag = _IOREAD; in vsprintf()
|
H A D | sprintf.c | 59 siop._flag = _IOREAD; in sprintf()
|
/titanic_41/usr/src/lib/libc/port/print/ |
H A D | vsprintf.c | 66 siop._flag = _IOREAD; /* distinguish dummy file descriptor */ in _vsprintf_c89()
|
H A D | sprintf.c | 53 siop._flag = _IOREAD; /* distinguish dummy file descriptor */ in sprintf()
|
/titanic_41/usr/src/ucblib/libcurses/ |
H A D | scanw.c | 79 junk._flag = _IOREAD|_IOWRT; in _sscans()
|