Home | History | Annotate | Download | only in stdio

Lines Matching defs:_ext

84 	struct	__sbuf _ext;
106 // below, and accessed via `_EXT`.
150 #define _EXT(fp) __BIONIC_CAST(reinterpret_cast, struct __sfileext*, (fp)->_ext._base)
152 #define _UB(fp) _EXT(fp)->_ub
153 #define _FLOCK(fp) _EXT(fp)->_lock
165 _EXT(fp)->_caller_handles_locking = false; \
170 (f)->_ext._base = __BIONIC_CAST(reinterpret_cast, unsigned char*, fext); \
236 #define FLOCKFILE(fp) if (!_EXT(fp)->_caller_handles_locking) flockfile(fp)
237 #define FUNLOCKFILE(fp) if (!_EXT(fp)->_caller_handles_locking) funlockfile(fp)