Home
last modified time | relevance | path

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

/third_party/ulib/musl/src/stdio/
A Dfseek.c3 int __fseeko_unlocked(FILE* f, off_t off, int whence) { in __fseeko_unlocked() argument
5 if (whence == SEEK_CUR) in __fseeko_unlocked()
19 if (f->seek(f, off, whence) < 0) in __fseeko_unlocked()
29 int __fseeko(FILE* f, off_t off, int whence) { in __fseeko() argument
32 result = __fseeko_unlocked(f, off, whence); in __fseeko()
37 int fseek(FILE* f, long off, int whence) { in fseek() argument
38 return __fseeko(f, off, whence); in fseek()
A D__stdio_seek.c4 off_t __stdio_seek(FILE* f, off_t off, int whence) { in __stdio_seek() argument
5 return lseek(f->fd, off, whence); in __stdio_seek()
A Dopen_memstream.c15 static off_t ms_seek(FILE* f, off_t off, int whence) { in ms_seek() argument
18 if (whence > 2U) { in ms_seek()
23 base = (size_t[3]){0, c->pos, c->len}[whence]; in ms_seek()
A Dopen_wmemstream.c17 static off_t wms_seek(FILE* f, off_t off, int whence) { in wms_seek() argument
20 if (whence > 2U) { in wms_seek()
25 base = (size_t[3]){0, c->pos, c->len}[whence]; in wms_seek()
A Dfmemopen.c12 static off_t mseek(FILE* f, off_t off, int whence) { in mseek() argument
15 if (whence > 2U) { in mseek()
20 base = (size_t[3]){0, c->pos, c->len}[whence]; in mseek()
/third_party/ulib/musl/stubs/
A Diostubs.c65 static off_t stub_lseek(int fd, off_t offset, int whence) { in stub_lseek() argument

Completed in 10 milliseconds