HomeSort by relevance Sort by last modified time
    Searched refs:_EXT (Results 1 - 5 of 5) sorted by null

  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fileext.h 47 #define _EXT(fp) ((struct __sfileext *)(void *)((fp)->_ext._base))
48 #define _UB(fp) _EXT(fp)->_ub
50 #define _LOCK(fp) (_EXT(fp)->_lock)
51 #define _LOCKCOND(fp) (_EXT(fp)->_lockcond)
52 #define _LOCKOWNER(fp) (_EXT(fp)->_lockowner)
53 #define _LOCKCOUNT(fp) (_EXT(fp)->_lockcount)
54 #define _LOCKINTERNAL(fp) (_EXT(fp)->_lockinternal)
55 #define _LOCKCANCELSTATE(fp) (_EXT(fp)->_lockcancelstate)
57 /* LINTED */(f)->_ext._base = (unsigned char *)(fext); \
    [all...]
wcio.h 39 #define WCIO_GET(fp) (&(_EXT(fp)->_wcio))
63 _EXT(fp)->_wcio.wcio_mode = 0;\
69 _EXT(fp)->_wcio.wcio_ungetwc_inbuf = 0;\
  /bionic/libc/stdio/
local.h 86 struct __sbuf _ext; member in struct:__sFILE
108 // below, and accessed via `_EXT`.
167 #define _EXT(fp) __BIONIC_CAST(reinterpret_cast, struct __sfileext*, (fp)->_ext._base)
169 #define _UB(fp) _EXT(fp)->_ub
170 #define _FLOCK(fp) _EXT(fp)->_lock
174 (fp)->_ext._base = __BIONIC_CAST(reinterpret_cast, unsigned char*, fext); \
175 memset(_EXT(fp), 0, sizeof(struct __sfileext)); \
176 _EXT(fp)->_caller_handles_locking = true; \
230 if (!_EXT(fp)->_caller_handles_locking) flockfile(fp
    [all...]
stdio_ext.cpp 80 int old_state = _EXT(fp)->_caller_handles_locking ? FSETLOCKING_BYCALLER : FSETLOCKING_INTERNAL;
90 _EXT(fp)->_caller_handles_locking = (type == FSETLOCKING_BYCALLER);
stdio.cpp 174 memset(_EXT(fp), 0, sizeof(struct __sfileext));
176 _EXT(fp)->_caller_handles_locking = false;
181 _EXT(fp)->_seek64 = nullptr;
207 _EXT(fp)->_seek64 = __sseek64;
360 _EXT(fp)->_seek64 = __sseek64;
500 if (_EXT(fp)->_seek64 != nullptr) {
501 return (*_EXT(fp)->_seek64)(fp->_cookie, offset, whence);
678 _EXT(fp)->_seek64 = seek_fn;

Completed in 87 milliseconds