HomeSort by relevance Sort by last modified time
    Searched full:whence (Results 1 - 25 of 222) sorted by null

1 2 3 4 5 6 7 8 9

  /development/simulator/app/
AssetStream.h 71 /* seek, using wxWidgets-defined values for "whence" */
73 int whence; local
77 whence = SEEK_SET;
79 whence = SEEK_END;
81 whence = SEEK_CUR;
82 newPosn = mpAsset->seek(seek, whence);
  /bionic/libc/unistd/
lseek64.c 30 extern int __llseek(int fd, unsigned long offset_hi, unsigned long offset_lo, loff_t* result, int whence);
32 loff_t lseek64(int fd, loff_t off, int whence)
36 if ( __llseek(fd, (unsigned long)(off >> 32),(unsigned long)(off), &result, whence ) < 0 )
  /prebuilt/windows/sdl/host/include/SDL/
SDL_rwops.h 48 /* Seek to 'offset' relative to whence, one of stdio's whence values:
52 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence);
101 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
  /bionic/libc/stdio/
fseek.c 46 * `Whence' must be one of the three SEEK_* macros.
49 fseeko(FILE *fp, off_t offset, int whence)
70 * Change any SEEK_CUR to SEEK_SET, and check `whence' argument.
71 * After this, whence is either SEEK_SET or SEEK_END.
73 switch (whence) {
97 whence = SEEK_SET;
139 if (whence == SEEK_SET)
226 (*seekfn)(fp->_cookie, (fpos_t)offset, whence) == POS_ERR) {
246 fseek(FILE *fp, long offset, int whence)
250 return(fseeko(fp, off, whence));
    [all...]
stdio.c 70 __sseek(void *cookie, fpos_t offset, int whence)
75 ret = lseek(fp->_file, (off_t)offset, whence);
  /external/e2fsprogs/lib/blkid/
llseek.c 90 blkid_loff_t blkid_llseek(int fd, blkid_loff_t offset, int whence)
97 return lseek(fd, (off_t) offset, whence);
104 result = my_llseek(fd, offset, whence);
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_rwops.h 42 /* Seek to 'offset' relative to whence, one of stdio's whence values:
46 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence);
114 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_rwops.h 42 /* Seek to 'offset' relative to whence, one of stdio's whence values:
46 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence);
114 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_rwops.h 42 /* Seek to 'offset' relative to whence, one of stdio's whence values:
46 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence);
114 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
  /prebuilt/windows/sdl/include/SDL/
SDL_rwops.h 42 /* Seek to 'offset' relative to whence, one of stdio's whence values:
46 int (SDLCALL *seek)(struct SDL_RWops *context, int offset, int whence);
114 #define SDL_RWseek(ctx, offset, whence) (ctx)->seek(ctx, offset, whence)
  /external/e2fsprogs/lib/ext2fs/
fileio.c 297 int whence, __u64 *ret_pos)
301 if (whence == EXT2_SEEK_SET)
303 else if (whence == EXT2_SEEK_CUR)
305 else if (whence == EXT2_SEEK_END)
317 int whence, ext2_off_t *ret_pos)
323 retval = ext2fs_file_llseek(file, loffset, whence, &ret_loffset);
  /external/stlport/src/details/
fstream_unistd.cpp 288 int whence; local
294 whence = SEEK_SET;
297 whence = SEEK_CUR;
302 whence = SEEK_END;
308 return LSEEK(_M_file_id, offset, whence);
fstream_stdio.cpp 344 int whence; local
350 whence = SEEK_SET;
353 whence = SEEK_CUR;
358 whence = SEEK_END;
364 if ( FSEEK(_M_file, offset, whence) == 0 ) {
  /external/stlport/src/
stdio_streambuf.cpp 78 int whence; local
81 whence = SEEK_SET;
84 whence = SEEK_CUR;
87 whence = SEEK_END;
93 if (off <= numeric_limits<off_type>::max() && FSEEK(_M_file, off, whence) == 0) {
  /ndk/sources/cxx-stl/stlport/src/details/
fstream_unistd.cpp 288 int whence; local
294 whence = SEEK_SET;
297 whence = SEEK_CUR;
302 whence = SEEK_END;
308 return LSEEK(_M_file_id, offset, whence);
  /ndk/sources/cxx-stl/stlport/src/
stdio_streambuf.cpp 78 int whence; local
81 whence = SEEK_SET;
84 whence = SEEK_CUR;
87 whence = SEEK_END;
93 if (off <= numeric_limits<off_type>::max() && FSEEK(_M_file, off, whence) == 0) {
  /external/qemu/distrib/sdl-1.2.12/src/file/
SDL_rwops.c 126 static int SDLCALL win32_file_seek(SDL_RWops *context, int offset, int whence)
137 if (whence == RW_SEEK_CUR && context->hidden.win32io.buffer.left) {
142 switch (whence) {
150 SDL_SetError("win32_file_seek: Unknown value for 'whence'");
263 static int SDLCALL stdio_seek(SDL_RWops *context, int offset, int whence)
265 if ( fseek(context->hidden.stdio.fp, offset, whence) == 0 ) {
307 static int SDLCALL mem_seek(SDL_RWops *context, int offset, int whence)
311 switch (whence) {
322 SDL_SetError("Unknown value for 'whence'");
  /external/bluetooth/glib/glib/
giounix.c 267 int whence; local
274 whence = SEEK_SET;
277 whence = SEEK_CUR;
280 whence = SEEK_END;
283 whence = -1; /* Shut the compiler up */
296 result = lseek (unix_channel->fd, tmp_offset, whence);
  /development/ndk/platforms/android-9/include/android/
asset_manager.h 89 * Seek to the specified offset within the asset data. 'whence' uses the
94 off_t AAsset_seek(AAsset* asset, off_t offset, int whence);
  /external/zlib/
gzlib.c 275 z_off64_t ZEXPORT gzseek64(file, offset, whence)
278 int whence;
296 if (whence != SEEK_SET && whence != SEEK_CUR)
300 if (whence == SEEK_SET)
351 z_off_t ZEXPORT gzseek(file, offset, whence)
354 int whence;
358 ret = gzseek64(file, (z_off64_t)offset, whence);
  /frameworks/base/native/include/android/
asset_manager.h 89 * Seek to the specified offset within the asset data. 'whence' uses the
94 off_t AAsset_seek(AAsset* asset, off_t offset, int whence);
  /external/chromium/net/base/
file_stream_win.cc 16 // Ensure that we can just use our Whence values directly.
177 int64 FileStream::Seek(Whence whence, int64 offset) {
184 DWORD move_method = static_cast<DWORD>(whence);
file_stream.h 23 enum Whence {
59 int64 Seek(Whence whence, int64 offset);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
af_vfs.h 53 int af_fseek (AFvirtualfile *vfile, long offset, int whence);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
file.h 31 /* Alternate names for values for the WHENCE argument to `lseek'.

Completed in 610 milliseconds

1 2 3 4 5 6 7 8 9