Home
last modified time | relevance | path

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

/bionic/libc/stdio/
Dflags.c77 ret = __SRW; in __sflags()
Dfunopen.c56 flags = __SRW; /* read-write */ in funopen()
Dwsetup.c54 if ((fp->_flags & __SRW) == 0) in __swsetup()
Dfflush.c45 if ((fp->_flags & (__SWR | __SRW)) == 0) { in fflush()
Drefill.c68 if ((fp->_flags & __SRW) == 0) { in __srefill()
Dfread.c87 if ((fp->_flags & __SRW) == 0) { in fread()
Dungetc.c91 if ((fp->_flags & __SRW) == 0) in ungetc()
Dfseek.c122 if (fp->_flags & (__SWR | __SRW | __SNBF | __SNPT)) in fseeko()
Dvfprintf.c306 if ((fp->_flags & (__SNBF|__SWR|__SRW)) == (__SNBF|__SWR) && in vfprintf()
/bionic/libc/include/
Dstdio.h162 #define __SRW 0x0010 /* open for reading & writing */ macro