Searched refs:whence (Results 1 – 5 of 5) sorted by relevance
/bionic/libc/stdio/ |
D | stdio.cpp | 411 fpos_t __sseek(void* cookie, fpos_t offset, int whence) { in __sseek() argument 413 return TEMP_FAILURE_RETRY(lseek(fp->_file, offset, whence)); in __sseek() 416 off64_t __sseek64(void* cookie, off64_t offset, int whence) { in __sseek64() argument 418 return TEMP_FAILURE_RETRY(lseek64(fp->_file, offset, whence)); in __sseek64() 426 static off64_t __seek_unlocked(FILE* fp, off64_t offset, int whence) { in __seek_unlocked() argument 429 return (*_EXT(fp)->_seek64)(fp->_cookie, offset, whence); in __seek_unlocked() 431 off64_t result = (*fp->_seek)(fp->_cookie, offset, whence); in __seek_unlocked() 466 int __fseeko64(FILE* fp, off64_t offset, int whence, int off_t_bits) { in __fseeko64() argument 471 if (whence == SEEK_CUR) { in __fseeko64() 477 whence = SEEK_SET; in __fseeko64() [all …]
|
/bionic/libc/bionic/ |
D | legacy_32_bit_support.cpp | 63 off64_t lseek64(int fd, off64_t off, int whence) { in lseek64() argument 67 if (__llseek(fd, off_hi, off_lo, &result, whence) < 0) { in lseek64()
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
D | open_memstream.c | 76 memstream_seek(void *v, fpos_t off, int whence) in memstream_seek() argument 81 switch (whence) { in memstream_seek()
|
D | fmemopen.c | 71 fmemopen_seek(void *v, fpos_t off, int whence) in fmemopen_seek() argument 76 switch (whence) { in fmemopen_seek()
|
D | open_wmemstream.c | 80 wmemstream_seek(void *v, fpos_t off, int whence) in wmemstream_seek() argument 85 switch (whence) { in wmemstream_seek()
|