Home
last modified time | relevance | path

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

/NextBSD/lib/libc/stdio/
HDfflush.c75 if ((fp->_flags & (__SWR | __SRW)) == 0) in fflush()
94 if ((fp->_flags & (__SWR | __SRW)) == 0) in __fflush()
HDflags.c89 ret = __SRW; in __sflags()
HDfunopen.c64 flags = __SRW; /* read-write */ in funopen()
HDwsetup.c60 if ((fp->_flags & __SRW) == 0) { in __swsetup()
HDrefill.c85 if ((fp->_flags & __SRW) == 0) { in __srefill()
HDungetc.c118 if ((fp->_flags & __SRW) == 0) in __ungetc()
HDfseek.c171 if (fp->_flags & (__SWR | __SRW | __SNBF | __SNPT)) in _fseeko()
HDxprintf.c620 if ((fp->_flags & (__SNBF|__SWR|__SRW)) == (__SNBF|__SWR) && in __xvprintf()
HDvfprintf.c279 if ((fp->_flags & (__SNBF|__SWR|__SRW)) == (__SNBF|__SWR) && in vfprintf_l()
HDvfwprintf.c361 if ((fp->_flags & (__SNBF|__SWR|__SRW)) == (__SNBF|__SWR) && in vfwprintf_l()
/NextBSD/include/
HDstdio.h167 #define __SRW 0x0010 /* open for reading & writing */ macro