Home
last modified time | relevance | path

Searched refs:fpos_t (Results 1 – 8 of 8) sorted by relevance

/bionic/libc/include/
Dstdio.h55 typedef off_t fpos_t; typedef
220 int fgetpos(FILE* __fp, fpos_t* __pos) __RENAME(fgetpos64) __INTRODUCED_IN(24);
221 int fsetpos(FILE* __fp, const fpos_t* __pos) __RENAME(fsetpos64) __INTRODUCED_IN(24);
228 fpos_t (*__seek_fn)(void*, fpos_t, int),
232 int fgetpos(FILE* __fp, fpos_t* __pos);
233 int fsetpos(FILE* __fp, const fpos_t* __pos);
240 fpos_t (*__seek_fn)(void*, fpos_t, int),
/bionic/libc/stdio/
Dlocal.h82 fpos_t (*_seek)(void*, fpos_t, int);
101 fpos_t _unused_0; // This was the `_offset` field (see below).
202 __LIBC32_LEGACY_PUBLIC__ fpos_t __sseek(void*, fpos_t, int);
Dfmemopen.cpp92 static fpos_t fmemopen_seek(void* cookie, fpos_t offset, int whence) { in fmemopen_seek()
Dstdio.cpp536 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/tests/headers/posix/
Dstdio_h.c35 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/
Dopen_memstream.c75 static fpos_t
76 memstream_seek(void *v, fpos_t off, int whence) in memstream_seek()
Dopen_wmemstream.c79 static fpos_t
80 wmemstream_seek(void *v, fpos_t off, int whence) in wmemstream_seek()
/bionic/tests/
Dstdio_test.cpp1403 fpos_t pos1; in TEST()
1404 fpos_t pos2; in TEST()
1405 fpos_t pos3; in TEST()
1406 fpos_t pos4; in TEST()
1407 fpos_t pos5; in TEST()
1475 fpos_t mb_two_bytes_pos; in TEST()
1483 fpos_t pos_inside_mb; in TEST()
2263 auto seek_fn = [](void*, fpos_t, int) -> fpos_t { return 0xfedcba12; }; in TEST() argument
2268 fpos_t pos; in TEST()
2314 fpos_t pos; in AssertFileOffsetAt()
[all …]