Symbol: fpos_t
include/stdio.h
137
fpos_t (* _Nullable _seek)(void *, fpos_t, int);
include/stdio.h
154
fpos_t _offset; /* current lseek offset */
include/stdio.h
272
int fgetpos(FILE * __restrict, fpos_t * __restrict);
include/stdio.h
282
int fsetpos(FILE *, const fpos_t *);
include/stdio.h
421
fpos_t (* _Nullable)(void *, fpos_t, int),
lib/libc/stdio/fgetpos.c
38
fgetpos(FILE * __restrict fp, fpos_t * __restrict pos)
lib/libc/stdio/fgetpos.c
43
if ((*pos = ftello(fp)) == (fpos_t)-1)
lib/libc/stdio/fmemopen.c
211
static fpos_t
lib/libc/stdio/fmemopen.c
212
fmemopen_seek(void *cookie, fpos_t offset, int whence)
lib/libc/stdio/fmemopen.c
48
static fpos_t fmemopen_seek(void *cookie, fpos_t offset, int whence);
lib/libc/stdio/fopen.c
92
(void)_sseek(fp, (fpos_t)0, SEEK_END);
lib/libc/stdio/fopencookie.c
113
static fpos_t
lib/libc/stdio/fopencookie.c
114
_fopencookie_seek(void *cookie, fpos_t offset, int whence)
lib/libc/stdio/fopencookie.c
147
return ((fpos_t)off64);
lib/libc/stdio/fopencookie.c
42
static fpos_t _fopencookie_seek(void *, fpos_t, int);
lib/libc/stdio/freopen.c
115
(void) _sseek(fp, (fpos_t)0, SEEK_SET);
lib/libc/stdio/freopen.c
246
(void) _sseek(fp, (fpos_t)0, SEEK_END);
lib/libc/stdio/fseek.c
281
(ret = _sseek(fp, (fpos_t)offset, whence)) == POS_ERR)
lib/libc/stdio/fseek.c
47
#define POS_ERR (-(fpos_t)1)
lib/libc/stdio/fseek.c
92
fpos_t (*seekfn)(void *, fpos_t, int);
lib/libc/stdio/fseek.c
93
fpos_t target, curoff, ret;
lib/libc/stdio/fsetpos.c
42
fsetpos(FILE *iop, const fpos_t *pos)
lib/libc/stdio/ftell.c
105
pos = _sseek(fp, (fpos_t)0, SEEK_CUR);
lib/libc/stdio/ftell.c
66
fpos_t rv;
lib/libc/stdio/ftell.c
82
_ftello(FILE *fp, fpos_t *offset)
lib/libc/stdio/ftell.c
84
fpos_t pos;
lib/libc/stdio/ftell.c
99
pos = _sseek(fp, (fpos_t)0, SEEK_END);
lib/libc/stdio/funopen.c
44
fpos_t (*seekfn)(void *, fpos_t, int),
lib/libc/stdio/local.h
56
extern fpos_t _sseek(FILE *, fpos_t, int);
lib/libc/stdio/local.h
57
extern int _ftello(FILE *, fpos_t *);
lib/libc/stdio/local.h
69
extern fpos_t __sseek(void *, fpos_t, int);
lib/libc/stdio/open_memstream.c
109
static fpos_t
lib/libc/stdio/open_memstream.c
110
memstream_seek(void *cookie, fpos_t pos, int whence)
lib/libc/stdio/open_memstream.c
114
fpos_t old;
lib/libc/stdio/open_memstream.c
50
fpos_t offset;
lib/libc/stdio/open_memstream.c
54
memstream_grow(struct memstream *ms, fpos_t newoff)
lib/libc/stdio/open_wmemstream.c
171
static fpos_t
lib/libc/stdio/open_wmemstream.c
172
wmemstream_seek(void *cookie, fpos_t pos, int whence)
lib/libc/stdio/open_wmemstream.c
175
fpos_t old;
lib/libc/stdio/open_wmemstream.c
50
fpos_t offset;
lib/libc/stdio/open_wmemstream.c
55
wmemstream_grow(struct wmemstream *ms, fpos_t newoff)
lib/libc/stdio/stdio.c
108
if (_sseek(fp, (fpos_t)0, SEEK_END) == -1 &&
lib/libc/stdio/stdio.c
127
fpos_t
lib/libc/stdio/stdio.c
128
_sseek(FILE *fp, fpos_t offset, int whence)
lib/libc/stdio/stdio.c
130
fpos_t ret;
lib/libc/stdio/stdio.c
64
fpos_t
lib/libc/stdio/stdio.c
65
__sseek(void *cookie, fpos_t offset, int whence)
lib/libfetch/ftp.c
488
static fpos_t ftp_seekfn(void *, fpos_t, int);
lib/libfetch/ftp.c
551
static fpos_t
lib/libfetch/ftp.c
552
ftp_seekfn(void *v, fpos_t pos __unused, int whence __unused)
lib/libz/zopen.c
31
static fpos_t
lib/libz/zopen.c
32
xgzseek(void *cookie, fpos_t offset, int whence)