Searched refs:seek_fn (Results 1 - 2 of 2) sorted by relevance

/bionic/libc/stdio/
H A Dstdio.cpp581 fpos_t (*seek_fn)(void*, fpos_t, int),
585 fp->_seek = seek_fn;
593 fpos64_t (*seek_fn)(void*, fpos64_t, int),
597 _EXT(fp)->_seek64 = seek_fn;
578 funopen(const void* cookie, int (*read_fn)(void*, char*, int), int (*write_fn)(void*, const char*, int), fpos_t (*seek_fn)(void*, fpos_t, int), int (*close_fn)(void*)) argument
590 funopen64(const void* cookie, int (*read_fn)(void*, char*, int), int (*write_fn)(void*, const char*, int), fpos64_t (*seek_fn)(void*, fpos64_t, int), int (*close_fn)(void*)) argument
/bionic/tests/
H A Dstdio_test.cpp1161 auto seek_fn = [](void*, fpos_t, int) -> fpos_t { return 0xfedcba12; }; local
1164 FILE* fp = funopen(nullptr, read_fn, nullptr, seek_fn, nullptr);

Completed in 3369 milliseconds