Home
last modified time | relevance | path

Searched refs:__filbuf (Results 1 – 11 of 11) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/stdio/
H A Dgetc.c62 return ((--iop->_cnt < 0) ? __filbuf(iop) : *iop->_ptr++); in getc_unlocked()
68 return ((--iop->_cnt < 0) ? __filbuf(iop) : *iop->_ptr++); in _getc_internal()
H A Dgets.c75 if (__filbuf(stdin) != EOF) { in gets()
H A D_filbuf.c30 #pragma weak __filbuf = _filbuf macro
H A Dfgets.c75 if (__filbuf(iop) != EOF) { in fgets()
H A Dgetline.c73 c = (--iop->_cnt < 0) ? __filbuf(iop) : *iop->_ptr++; in getdelim()
H A Dfread.c89 if ((c = __filbuf(iop)) == EOF) in fread()
/illumos-gate/usr/src/head/iso/
H A Dstdio_iso.h265 extern int __filbuf(FILE *);
280 return (--_p->_cnt < 0 ? __filbuf(_p) : (int)*_p->_ptr++); } in getc()
286 #define getc(p) (--(p)->_cnt < 0 ? __filbuf(p) : (int)*(p)->_ptr++)
/illumos-gate/usr/src/ucbhead/
H A Dstdio.h208 extern int __filbuf(FILE *);
233 #define getc(p) (--(p)->_cnt < 0 ? __filbuf(p) : (int)*(p)->_ptr++)
/illumos-gate/usr/src/lib/libc/inc/
H A Dstdiom.h156 extern int __filbuf(FILE *);
/illumos-gate/usr/src/head/
H A Dstdio.h142 using std::__filbuf;
/illumos-gate/usr/src/lib/libc/port/
H A Dmapfile-vers2616 __filbuf;