Symbol: fpos_t
include/stdio.h
136
int fgetpos(FILE *, fpos_t *);
include/stdio.h
149
int fsetpos(FILE *, const fpos_t *);
lib/libc/stdio/fflush.c
58
fpos_t off;
lib/libc/stdio/fgetpos.c
40
fgetpos(FILE *fp, fpos_t *pos)
lib/libc/stdio/fgetpos.c
42
return((*pos = ftello(fp)) == (fpos_t)-1);
lib/libc/stdio/fmemopen.c
74
static fpos_t
lib/libc/stdio/fmemopen.c
75
fmemopen_seek(void *v, fpos_t off, int whence)
lib/libc/stdio/fseek.c
158
curoff = (*seekfn)(fp->_cookie, (fpos_t)0, SEEK_CUR);
lib/libc/stdio/fseek.c
235
(*seekfn)(fp->_cookie, (fpos_t)offset, whence) == POS_ERR) {
lib/libc/stdio/fseek.c
42
#define POS_ERR (-(fpos_t)1)
lib/libc/stdio/fseek.c
51
fpos_t (*seekfn)(void *, fpos_t, int);
lib/libc/stdio/fseek.c
52
fpos_t target, curoff;
lib/libc/stdio/fseek.c
86
curoff = (*seekfn)(fp->_cookie, (fpos_t)0, SEEK_CUR);
lib/libc/stdio/fseek.c
87
if (curoff == (fpos_t)-1) {
lib/libc/stdio/fsetpos.c
40
fsetpos(FILE *iop, const fpos_t *pos)
lib/libc/stdio/ftell.c
45
fpos_t pos;
lib/libc/stdio/ftell.c
63
pos = (*fp->_seek)(fp->_cookie, (fpos_t)0, SEEK_CUR);
lib/libc/stdio/local.h
52
fpos_t __sseek(void *, fpos_t, int);
lib/libc/stdio/open_memstream.c
74
static fpos_t
lib/libc/stdio/open_memstream.c
75
memstream_seek(void *v, fpos_t off, int whence)
lib/libc/stdio/open_wmemstream.c
78
static fpos_t
lib/libc/stdio/open_wmemstream.c
79
wmemstream_seek(void *v, fpos_t off, int whence)
lib/libc/stdio/stdio.c
68
fpos_t
lib/libc/stdio/stdio.c
69
__sseek(void *cookie, fpos_t offset, int whence)
regress/lib/libc/orientation/orientation_test.c
118
fpos_t pos;
usr.bin/lex/tables.c
191
fpos_t pos;
usr.bin/lex/tables.h
52
fpos_t th_ssize_pos;