HomeSort by: relevance | last modified time | path
    Searched defs:seekfn (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libc/stdio/
fseeko.c 65 off_t (*seekfn)(void *, off_t, int); local in function:__weak_alias
82 if ((seekfn = fp->_seek) == NULL) {
104 curoff = (*seekfn)(fp->_cookie, (off_t)0, SEEK_CUR);
149 * this is a `regular' Unix file (and hence seekfn==__sseek).
158 if (seekfn != __sseek ||
184 curoff = (*seekfn)(fp->_cookie, (off_t)0, SEEK_CUR);
239 if ((*seekfn)(fp->_cookie, curoff, SEEK_SET) == POS_ERR)
263 (*seekfn)(fp->_cookie, offset, whence) == POS_ERR) {
funopen.c 55 off_t (*seekfn)(void *, off_t, int),
81 fp->_seek = seekfn;
91 off_t (*seekfn)(void *, off_t, int); member in struct:__anon0a17aefa0108
131 return (*d->seekfn)(d->cookie, off, whence);
150 off_t (*seekfn)(void *, off_t, int),
162 d->seekfn = seekfn;
167 d->seekfn ? cseekfn : NULL,

Completed in 11 milliseconds