Home
last modified time | relevance | path

Searched refs:whence (Results 1 – 6 of 6) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/stdio/
Dfseek.c49 fseeko(FILE *fp, off_t offset, int whence) in fseeko() argument
74 switch (whence) { in fseeko()
100 whence = SEEK_SET; in fseeko()
143 if (whence == SEEK_SET) in fseeko()
232 (*seekfn)(fp->_cookie, (fpos_t)offset, whence) == POS_ERR) { in fseeko()
248 fseek(FILE *fp, long offset, int whence) in fseek() argument
250 return (fseeko(fp, offset, whence)); in fseek()
Dopen_memstream.c76 memstream_seek(void *v, fpos_t off, int whence) in memstream_seek() argument
81 switch (whence) { in memstream_seek()
Dfmemopen.c71 fmemopen_seek(void *v, fpos_t off, int whence) in fmemopen_seek() argument
76 switch (whence) { in fmemopen_seek()
Dopen_wmemstream.c80 wmemstream_seek(void *v, fpos_t off, int whence) in wmemstream_seek() argument
85 switch (whence) { in wmemstream_seek()
/bionic/libc/stdio/
Dstdio.c71 __sseek(void *cookie, fpos_t offset, int whence) in __sseek() argument
76 ret = TEMP_FAILURE_RETRY(lseek(fp->_file, (off_t)offset, whence)); in __sseek()
/bionic/libc/bionic/
Dlegacy_32_bit_support.cpp60 off64_t lseek64(int fd, off64_t off, int whence) { in lseek64() argument
64 if (__llseek(fd, off_hi, off_lo, &result, whence) < 0) { in lseek64()