Home
last modified time | relevance | path

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

/freebsd/lib/libc/stdio/
H A Dfflush.c71 if ((fp->_flags & (__SWR | __SRW)) == 0) in fflush()
90 if ((fp->_flags & (__SWR | __SRW)) == 0) in __fflush()
H A Dflags.c85 ret = __SRW; in __sflags()
H A Dfunopen.c60 flags = __SRW; /* read-write */ in funopen()
H A Dwsetup.c56 if ((fp->_flags & __SRW) == 0) { in __swsetup()
H A Drefill.c81 if ((fp->_flags & __SRW) == 0) { in __srefill()
H A Dungetc.c114 if ((fp->_flags & __SRW) == 0) in __ungetc()
H A Dfseek.c167 if (fp->_flags & (__SWR | __SRW | __SNBF | __SNPT)) in _fseeko()
H A Dxprintf.c620 if ((fp->_flags & (__SNBF|__SWR|__SRW)) == (__SNBF|__SWR) && in __xvprintf()
H A Dvfprintf.c277 if ((fp->_flags & (__SNBF|__SWR|__SRW)) == (__SNBF|__SWR) && in vfprintf_l()
H A Dvfwprintf.c355 if ((fp->_flags & (__SNBF|__SWR|__SRW)) == (__SNBF|__SWR) && in vfwprintf_l()
/freebsd/include/
H A Dstdio.h181 #define __SRW 0x0010 /* open for reading & writing */ macro