HomeSort by relevance Sort by last modified time
    Searched refs:fpos_t (Results 1 - 25 of 47) sorted by null

1 2

  /prebuilts/ndk/r16/sources/android/support/include/
stdio.h 38 int fgetpos(FILE*, const fpos_t*) __RENAME(fgetpos64);
39 int fsetpos(FILE*, const fpos_t*) __RENAME(fsetpos64);
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
ftello.c 57 fpos_t pos;
75 pos = (*fp->_seek)(fp->_cookie, (fpos_t)0, SEEK_CUR);
76 if (pos == (fpos_t)-1) {
fgetpos.c 54 fgetpos(FILE *fp, fpos_t *pos)
fsetpos.c 57 fsetpos(FILE *iop, const fpos_t *pos)
ftell.c 60 fpos_t pos;
78 pos = (*fp->_seek)(fp->_cookie, (fpos_t)0, SEEK_CUR);
funopen.c 54 fpos_t (*seekfn) __P((void *, fpos_t, int));
fseeko.c 65 #define POS_ERR (-(fpos_t)1)
74 fpos_t (*seekfn)(void *, fpos_t, int);
75 fpos_t target, curoff;
124 curoff = (*seekfn)(fp->_cookie, (fpos_t)0, SEEK_CUR);
198 curoff = (*seekfn)(fp->_cookie, (fpos_t)0, SEEK_CUR);
234 target >= curoff && target < (fpos_t)(curoff + n)) {
287 (*seekfn)(fp->_cookie, (fpos_t)offset, whence) == POS_ERR) {
local.h 56 extern fpos_t __sseek(void *, fpos_t, int);
stdio.c 100 fpos_t
101 __sseek(void *cookie, fpos_t offset, int whence)
fopen.c 104 (void) __sseek((void *)fp, (fpos_t)0, SEEK_END);
freopen.c 198 (void) __sseek((void *)fp, (fpos_t)0, SEEK_END);
  /external/clang/test/Analysis/Inputs/
system-header-simulator.h 43 typedef __darwin_off_t fpos_t; typedef
53 fpos_t (*)(void *, fpos_t, int),
  /bionic/libc/include/
stdio.h 55 typedef off_t fpos_t; typedef
176 int fgetpos(FILE* __fp, fpos_t* __pos) __RENAME(fgetpos64) __INTRODUCED_IN(24);
177 int fsetpos(FILE* __fp, const fpos_t* __pos) __RENAME(fsetpos64) __INTRODUCED_IN(24);
184 fpos_t (*__seek_fn)(void*, fpos_t, int),
188 int fgetpos(FILE* __fp, fpos_t* __pos);
189 int fsetpos(FILE* __fp, const fpos_t* __pos);
196 fpos_t (*__seek_fn)(void*, fpos_t, int),
  /device/linaro/bootloader/edk2/StdLib/Include/
stdio.h 58 int fgetpos (FILE * __restrict, fpos_t * __restrict);
60 int fsetpos (FILE *, const fpos_t *);
172 of the fpos_t object. A later successful call to fsetpos using the same
173 stored fpos_t value restores the value of the associated mbstate_t object
177 innards of an fpos_t anyway. The library internally uses off_t,
181 typedef __off_t fpos_t; typedef
185 } fpos_t; typedef in typeref:struct:__sfpos
232 fpos_t (*_seek) (void *, fpos_t, int);
254 fpos_t _offset; /**< current lseek offset */
    [all...]
  /bionic/libc/stdio/
local.h 82 fpos_t (*_seek)(void*, fpos_t, int);
101 fpos_t _unused_0; // This was the `_offset` field (see below).
199 __LIBC32_LEGACY_PUBLIC__ fpos_t __sseek(void*, fpos_t, int);
fmemopen.cpp 92 static fpos_t fmemopen_seek(void* cookie, fpos_t offset, int whence) {
  /prebuilts/ndk/r16/sources/cxx-stl/system/include/
cstdio 43 using ::fpos_t;
  /system/core/libcutils/
open_memstream.c 162 static fpos_t seek_memstream(void* cookie, fpos_t offset, int whence)
173 if (newPosn < 0 || ((fpos_t)((size_t) newPosn)) != newPosn) {
177 return (fpos_t) -1;
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
open_memstream.c 75 static fpos_t
76 memstream_seek(void *v, fpos_t off, int whence)
open_wmemstream.c 79 static fpos_t
80 wmemstream_seek(void *v, fpos_t off, int whence)
  /external/libxcam/xcore/
file_handle.cpp 107 fpos_t cur_pos;
  /bionic/tests/headers/posix/
stdio_h.c 35 TYPE(fpos_t);
87 FUNCTION(fgetpos, int (*f)(FILE*, fpos_t*));
101 FUNCTION(fsetpos, int (*f)(FILE*, const fpos_t*));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
stdio.h 111 typedef _G_fpos_t fpos_t; typedef
113 typedef _G_fpos64_t fpos_t;
795 extern int fgetpos (FILE *__restrict __stream, fpos_t *__restrict __pos);
800 extern int fsetpos (FILE *__stream, __const fpos_t *__pos);
804 fpos_t *__restrict __pos), fgetpos64);
806 (FILE *__stream, __const fpos_t *__pos), fsetpos64);
  /external/libcxx/test/std/depr/depr.c.headers/
stdio_h.pass.cpp 110 fpos_t fpos = fpos_t();
  /external/libcxx/test/std/input.output/file.streams/c.files/
cstdio.pass.cpp 92 std::fpos_t fpos = std::fpos_t();

Completed in 319 milliseconds

1 2