Home
last modified time | relevance | path

Searched refs:__SRD (Results 1 – 13 of 13) sorted by relevance

/dragonfly/lib/libc/stdio/
H A Dwsetup.c62 if (fp->pub._flags & __SRD) { in __swsetup()
66 fp->pub._flags &= ~(__SRD|__SEOF); in __swsetup()
H A Drefill.c81 if ((fp->pub._flags & __SRD) == 0) { in __srefill()
95 fp->pub._flags |= __SRD; in __srefill()
H A Dungetc.c109 if ((fp->pub._flags & __SRD) == 0) { in __ungetc()
123 fp->pub._flags |= __SRD; in __ungetc()
H A Dfpurge.c61 fp->pub._w = fp->pub._flags & (__SLBF|__SNBF|__SRD) ? 0 : fp->_bf._size; in fpurge()
H A Dflags.c61 ret = __SRD; in __sflags()
H A Dfunopen.c57 flags = __SRD; /* read only */ in funopen()
H A Dvsscanf.c65 f.pub._flags = __SRD; in vsscanf_l()
H A Dvswscanf.c85 f.pub._flags = __SRD; in vswscanf_l()
H A Dftell.c104 if (fp->pub._flags & __SRD) { in _ftello()
H A Dfopencookie.c71 else if (flags == __SRD) in fopencookie()
H A Dfindfp.c68 std(__SRD, STDIN_FILENO),
H A Dfmemopen.c202 fp->_write = (flags & __SRD) ? NULL : &fmemopen_write; in fmemopen()
/dragonfly/include/
H A Dstdio.h133 #define __SRD 0x0004 /* OK to read */ macro