Home
last modified time | relevance | path

Searched refs:_EXT (Results 1 – 4 of 4) sorted by relevance

/bionic/libc/stdio/
Dwcio.h53 (_EXT(fp) ? &(_EXT(fp)->_wcio) : (struct wchar_io_data *)0)
83 memset(&(_EXT(fp)->_wcio), 0, sizeof(struct wchar_io_data))
Dlocal.h150 #define _EXT(fp) __BIONIC_CAST(reinterpret_cast, struct __sfileext*, (fp)->_ext._base) macro
152 #define _UB(fp) _EXT(fp)->_ub
153 #define _FLOCK(fp) _EXT(fp)->_lock
165 _EXT(fp)->_caller_handles_locking = false; \
236 #define FLOCKFILE(fp) if (!_EXT(fp)->_caller_handles_locking) flockfile(fp)
237 #define FUNLOCKFILE(fp) if (!_EXT(fp)->_caller_handles_locking) funlockfile(fp)
Dstdio_ext.cpp79 int old_state = _EXT(fp)->_caller_handles_locking ? FSETLOCKING_BYCALLER : FSETLOCKING_INTERNAL; in __fsetlocking()
89 _EXT(fp)->_caller_handles_locking = (type == FSETLOCKING_BYCALLER); in __fsetlocking()
Dstdio.cpp176 _EXT(fp)->_seek64 = nullptr; in __sfp()
202 _EXT(fp)->_seek64 = __sseek64; in __fopen()
361 _EXT(fp)->_seek64 = __sseek64; in freopen()
474 if (_EXT(fp)->_seek64 != nullptr) { in __seek_unlocked()
475 return (*_EXT(fp)->_seek64)(fp->_cookie, offset, whence); in __seek_unlocked()
643 _EXT(fp)->_seek64 = seek_fn; in funopen64()