Searched refs:_IOERR (Results 1 - 25 of 30) sorted by relevance

12

/illumos-gate/usr/src/lib/libbc/libc/stdio/common/
H A Dclrerr.c35 iop->_flag &= ~(_IOERR | _IOEOF);
H A Dferror.c28 #define __ferror__(p) (((p)->_flag&_IOERR)!=0)
H A Drew.c41 iop->_flag &= ~(_IOERR | _IOEOF);
H A Dfgets.c56 iop->_flag |= _IOERR;
H A Dfwrite.c72 iop->_flag |= _IOERR;
H A Dfputs.c55 iop->_flag |= _IOERR;
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Dferror.c46 return (iop->_flag & _IOERR);
H A Dgetw.c59 while (--i >= 0 && !(stream->_flag & (_IOERR | _IOEOF)))
61 ret = ((stream->_flag & (_IOERR | _IOEOF)) ? EOF : w);
H A Dclearerr.c49 iop->_flag &= ~(_IOERR | _IOEOF);
H A Dputw.c59 ret = stream->_flag & _IOERR;
H A D_wrtchk.c47 iop->_flag |= _IOERR;
H A Drewind.c61 iop->_flag &= ~(_IOERR | _IOEOF);
H A D_flsbuf.c76 iop->_flag |= _IOERR;
89 return ((iop->_flag & _IOERR) ? EOF : (unsigned char)ch);
H A D_filbuf.c129 iop->_flag |= _IOERR;
H A Dfwrite.c115 iop->_flag |= _IOERR;
132 iop->_flag |= _IOERR;
/illumos-gate/usr/src/lib/libbc/inc/include/
H A Dstdio.h49 #define _IOERR 040 macro
78 #define ferror(p) (((p)->_flag&_IOERR)!=0)
79 #define clearerr(p) (void) ((p)->_flag &= ~(_IOERR|_IOEOF))
/illumos-gate/usr/src/lib/libbc/inc/5include/
H A Dstdio.h90 #define _IOERR 0040 macro
169 #define clearerr(p) ((void) ((p)->_flag &= ~(_IOERR | _IOEOF)))
171 #define ferror(p) (((p)->_flag & _IOERR) != 0)
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dfgetwc.c63 fp->_flag = _IOERR;
92 fp->_flag |= _IOERR;
H A Dfputwc.c86 fp->_flag |= _IOERR;
H A Dfputws.c68 fp->_flag |= _IOERR;
/illumos-gate/usr/src/head/iso/
H A Dstdio_iso.h135 #define _IOERR 0040 /* I/O error from system */ macro
308 inline void clearerr(FILE *_p) { _p->_flag &= ~(_IOERR | _IOEOF); }
310 inline int ferror(FILE *_p) { return _p->_flag & _IOERR; }
313 #define clearerr(p) ((void)((p)->_flag &= ~(_IOERR | _IOEOF)))
315 #define ferror(p) ((p)->_flag & _IOERR)
/illumos-gate/usr/src/ucbhead/
H A Dstdio.h95 #define _IOERR 0040 /* I/O error from system */ macro
238 #define clearerr(p) ((void) ((p)->_flag &= ~(_IOERR | _IOEOF)))
240 #define ferror(p) ((p)->_flag & _IOERR)
/illumos-gate/usr/src/lib/libbc/libc/stdio/4.2/
H A Dfilbuf.c75 iop->_flag |= _IOERR;
H A Dflsbuf.c143 iop->_flag |= _IOERR;
189 iop->_flag |= _IOERR;
/illumos-gate/usr/src/lib/libbc/libc/stdio/sys5/
H A Dfilbuf.c73 iop->_flag |= _IOERR;

Completed in 70 milliseconds

12