OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_seek64
(Results
1 - 2
of
2
) sorted by null
/bionic/libc/stdio/
local.h
74
// Note that `_seek` is ignored if `
_seek64
` (in __sfileext) is set.
124
off64_t (*
_seek64
)(void*, off64_t, int);
member in struct:__sfileext
stdio.cpp
174
// We explicitly clear _seek and
_seek64
to prevent subtle bugs.
176
_EXT(fp)->
_seek64
= nullptr;
202
_EXT(fp)->
_seek64
= __sseek64;
361
_EXT(fp)->
_seek64
= __sseek64;
473
// Use `
_seek64
` if set, but fall back to `_seek`.
474
if (_EXT(fp)->
_seek64
!= nullptr) {
475
return (*_EXT(fp)->
_seek64
)(fp->_cookie, offset, whence);
643
_EXT(fp)->
_seek64
= seek_fn;
Completed in 65 milliseconds