Searched refs:fpos_t (Results 1 – 8 of 8) sorted by relevance
/bionic/libc/stdio/ |
D | local.h | 82 fpos_t (*_seek)(void*, fpos_t, int); 101 fpos_t _unused_0; // This was the `_offset` field (see below). 201 __LIBC32_LEGACY_PUBLIC__ fpos_t __sseek(void*, fpos_t, int);
|
D | fmemopen.cpp | 92 static fpos_t fmemopen_seek(void* cookie, fpos_t offset, int whence) { in fmemopen_seek()
|
D | stdio.cpp | 536 fpos_t __sseek(void* cookie, fpos_t offset, int whence) { in __sseek() 643 int fsetpos(FILE* fp, const fpos_t* pos) { in fsetpos() 671 int fgetpos(FILE* fp, fpos_t* pos) { in fgetpos() 715 fpos_t (*seek_fn)(void*, fpos_t, int), in funopen() argument
|
/bionic/libc/include/ |
D | stdio.h | 55 typedef off_t fpos_t; typedef 208 int fgetpos(FILE* _Nonnull __fp, fpos_t* _Nonnull __pos) __RENAME(fgetpos64) __INTRODUCED_IN(24); 209 int fsetpos(FILE* _Nonnull __fp, const fpos_t* _Nonnull __pos) __RENAME(fsetpos64) __INTRODUCED_IN(… 217 fpos_t (* _Nullable __seek_fn)(void* _Nonnull, fpos_t, int), 221 int fgetpos(FILE* _Nonnull __fp, fpos_t* _Nonnull __pos); 222 int fsetpos(FILE* _Nonnull __fp, const fpos_t* _Nonnull __pos); 230 fpos_t (* _Nullable __seek_fn)(void* _Nonnull, fpos_t, int),
|
/bionic/tests/headers/posix/ |
D | stdio_h.c | 35 TYPE(fpos_t); in stdio_h() 87 FUNCTION(fgetpos, int (*f)(FILE*, fpos_t*)); in stdio_h() 101 FUNCTION(fsetpos, int (*f)(FILE*, const fpos_t*)); in stdio_h()
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
D | open_memstream.c | 74 static fpos_t 75 memstream_seek(void *v, fpos_t off, int whence) in memstream_seek()
|
D | open_wmemstream.c | 78 static fpos_t 79 wmemstream_seek(void *v, fpos_t off, int whence) in wmemstream_seek()
|
/bionic/tests/ |
D | stdio_test.cpp | 1458 fpos_t pos1; in TEST() 1459 fpos_t pos2; in TEST() 1460 fpos_t pos3; in TEST() 1461 fpos_t pos4; in TEST() 1462 fpos_t pos5; in TEST() 1530 fpos_t mb_two_bytes_pos; in TEST() 1538 fpos_t pos_inside_mb; in TEST() 2342 auto seek_fn = [](void*, fpos_t, int) -> fpos_t { return 0xfedcba12; }; in TEST() argument 2347 fpos_t pos; in TEST() 2393 fpos_t pos; in AssertFileOffsetAt() [all …]
|