Home
last modified time | relevance | path

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

/bionic/libc/stdio/
Dstdio_ext.cpp51 return (fp->_flags & (__SRD|__SRW)) != 0; in __freadable()
55 return (fp->_flags & (__SWR|__SRW)) != 0; in __fwritable()
Drefill.c64 if ((fp->_flags & __SRW) == 0) { in __srefill()
Dlocal.h152 #define __SRW 0x0010 // Was opened for reading & writing. macro
Dvfwprintf.cpp134 if ((fp->_flags & (__SNBF | __SWR | __SRW)) == (__SNBF | __SWR) && fp->_file >= 0) { in FUNCTION_NAME()
Dvfprintf.cpp145 if ((fp->_flags & (__SNBF | __SWR | __SRW)) == (__SNBF | __SWR) && fp->_file >= 0) { in FUNCTION_NAME()
Dstdio.cpp700 fp->_flags = __SRW; in __funopen()
1082 if ((fp->_flags & (__SWR | __SRW)) == 0) { in fflush_unlocked()
/bionic/libc/upstream-openbsd/lib/libc/stdio/
Dflags.c80 ret = __SRW; in __sflags()
Dwsetup.c54 if ((fp->_flags & __SRW) == 0) in __swsetup()
Dungetc.c92 if ((fp->_flags & __SRW) == 0) { in ungetc()