Home
last modified time | relevance | path

Searched refs:fpos64_t (Results 1 – 3 of 3) sorted by relevance

/bionic/libc/include/
Dstdio.h56 typedef off64_t fpos64_t; typedef
234 int fgetpos64(FILE* _Nonnull __fp, fpos64_t* _Nonnull __pos) __INTRODUCED_IN(24);
235 int fsetpos64(FILE* _Nonnull __fp, const fpos64_t* _Nonnull __pos) __INTRODUCED_IN(24);
243 fpos64_t (* _Nullable __seek_fn)(void* _Nonnull, fpos64_t, int),
/bionic/libc/stdio/
Dstdio.cpp598 fpos64_t current_offset = __ftello64_unlocked(fp); in __fseeko64()
648 int fsetpos64(FILE* fp, const fpos64_t* pos) { in fsetpos64()
677 int fgetpos64(FILE* fp, fpos64_t* pos) { in fgetpos64()
727 fpos64_t (*seek_fn)(void*, fpos64_t, int), in funopen64() argument
/bionic/tests/
Dstdio_test.cpp2295 auto seek64_fn = [](void*, fpos64_t, int) -> fpos64_t { return 0xfedcba12345678; }; in TEST() argument
2310 fpos64_t pos64; in TEST()
2346 fpos64_t pos64; in AssertFileOffsetAt()
2373 fpos64_t sixteen_k_pos64; in TEST()