Searched refs:_IOEOF (Results 1 - 25 of 28) sorted by relevance

12

/illumos-gate/usr/src/lib/libbc/libc/stdio/common/
H A Dclrerr.c35 iop->_flag &= ~(_IOERR | _IOEOF);
H A Dfeof.c29 #define __feof__(p) (((p)->_flag&_IOEOF)!=0)
H A Drew.c41 iop->_flag &= ~(_IOERR | _IOEOF);
H A Dstdiom.h36 #define _WRTCHK(iop) ((((iop->_flag & (_IOWRT | _IOEOF)) != _IOWRT) \
H A Dfseek.c50 iop->_flag &= ~_IOEOF;
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Dfeof.c46 return (iop->_flag & _IOEOF);
H A Dgetw.c59 while (--i >= 0 && !(stream->_flag & (_IOERR | _IOEOF)))
61 ret = ((stream->_flag & (_IOERR | _IOEOF)) ? EOF : w);
H A D_wrtchk.c45 if ((iop->_flag & (_IOWRT | _IOEOF)) != _IOWRT) {
51 iop->_flag = (iop->_flag & ~_IOEOF) | _IOWRT;
H A Dclearerr.c49 iop->_flag &= ~(_IOERR | _IOEOF);
H A Drewind.c61 iop->_flag &= ~(_IOERR | _IOEOF);
H A D_filbuf.c99 if ((flag = iop->_flag) & _IOEOF) {
127 iop->_flag |= _IOEOF;
H A Dungetc.c71 iop->_flag &= ~_IOEOF;
H A D_flsbuf.c53 _IOWRT | _IOEOF))
H A Dfseek.c56 iop->_flag &= ~_IOEOF;
H A Dfseeko.c63 iop->_flag &= ~_IOEOF;
/illumos-gate/usr/src/lib/libbc/inc/include/
H A Dstdio.h48 #define _IOEOF 020 macro
77 #define feof(p) (((p)->_flag&_IOEOF)!=0)
79 #define clearerr(p) (void) ((p)->_flag &= ~(_IOERR|_IOEOF))
/illumos-gate/usr/src/lib/libbc/libc/stdio/4.2/
H A Dfilbuf.c56 if (iop->_flag&(_IOSTRG|_IOEOF))
77 iop->_flag |= _IOEOF;
H A Dflsbuf.c130 if ( (iop->_flag & (_IOLBF | _IOWRT | _IOEOF)) == (_IOLBF | _IOWRT) ) {
138 if ( (iop->_flag & (_IONBF | _IOWRT | _IOEOF)) == (_IONBF | _IOWRT) ) {
204 if ( (iop->_flag & (_IOWRT | _IOEOF)) != _IOWRT ) {
207 iop->_flag = iop->_flag & ~_IOEOF | _IOWRT; /* fix flags */
/illumos-gate/usr/src/lib/libbc/inc/5include/
H A Dstdio.h89 #define _IOEOF 0020 macro
169 #define clearerr(p) ((void) ((p)->_flag &= ~(_IOERR | _IOEOF)))
170 #define feof(p) (((p)->_flag & _IOEOF) != 0)
/illumos-gate/usr/src/head/iso/
H A Dstdio_iso.h134 #define _IOEOF 0020 /* EOF reached on read */ macro
308 inline void clearerr(FILE *_p) { _p->_flag &= ~(_IOERR | _IOEOF); }
309 inline int feof(FILE *_p) { return _p->_flag & _IOEOF; }
313 #define clearerr(p) ((void)((p)->_flag &= ~(_IOERR | _IOEOF)))
314 #define feof(p) ((p)->_flag & _IOEOF)
/illumos-gate/usr/src/ucbhead/
H A Dstdio.h94 #define _IOEOF 0020 /* EOF reached on read */ macro
238 #define clearerr(p) ((void) ((p)->_flag &= ~(_IOERR | _IOEOF)))
239 #define feof(p) ((p)->_flag & _IOEOF)
/illumos-gate/usr/src/lib/libbc/libc/stdio/sys5/
H A Dfilbuf.c75 iop->_flag |= _IOEOF;
H A Dflsbuf.c133 if ( (iop->_flag & (_IOLBF | _IOWRT | _IOEOF)) == (_IOLBF | _IOWRT) ) {
141 if ( (iop->_flag & (_IONBF | _IOWRT | _IOEOF)) == (_IONBF | _IOWRT) ) {
209 if ( (iop->_flag & (_IOWRT | _IOEOF)) != _IOWRT ) {
212 iop->_flag = iop->_flag & ~_IOEOF | _IOWRT; /* fix flags */
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dungetwc.c96 iop->_flag &= ~_IOEOF;
/illumos-gate/usr/src/ucblib/libucb/inc/
H A Dstdiom.h117 #define _WRTCHK(iop) ((((iop->_flag & (_IOWRT | _IOEOF)) != _IOWRT) || \

Completed in 258 milliseconds

12