Searched refs:_seek (Results 1 - 6 of 6) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/stdio/
H A Dmakebuf.c104 return ((st.st_mode & S_IFMT) == S_IFREG && fp->_seek == __sseek ?
H A Dfmemopen.c179 fp->_seek = fmemopen_seek;
H A Dopen_memstream.c153 fp->_seek = memstream_seek;
H A Dopen_wmemstream.c164 fp->_seek = wmemstream_seek;
/bionic/libc/stdio/
H A Dstdio.cpp164 // We explicitly clear _seek and _seek64 to prevent subtle bugs.
165 fp->_seek = nullptr;
427 // Use `_seek64` if set, but fall back to `_seek`.
430 } else if (fp->_seek != nullptr) {
431 off64_t result = (*fp->_seek)(fp->_cookie, offset, whence);
585 fp->_seek = seek_fn;
H A Dlocal.h74 // Note that `_seek` is ignored if `_seek64` (in __sfileext) is set.
80 fpos_t (*_seek)(void*, fpos_t, int); member in struct:__sFILE
122 // Equivalent to `_seek` but for _FILE_OFFSET_BITS=64.
123 // Callers should use this but fall back to `__sFILE::_seek`.

Completed in 1617 milliseconds