HomeSort by relevance Sort by last modified time
    Searched refs:whence (Results 76 - 100 of 266) sorted by null

1 2 34 5 6 7 8 91011

  /prebuilts/ndk/9/platforms/android-12/arch-arm/usr/include/android/
asset_manager.h 91 * Seek to the specified offset within the asset data. 'whence' uses the
96 off_t AAsset_seek(AAsset* asset, off_t offset, int whence);
  /prebuilts/ndk/9/platforms/android-12/arch-mips/usr/include/android/
asset_manager.h 91 * Seek to the specified offset within the asset data. 'whence' uses the
96 off_t AAsset_seek(AAsset* asset, off_t offset, int whence);
  /prebuilts/ndk/9/platforms/android-12/arch-x86/usr/include/android/
asset_manager.h 91 * Seek to the specified offset within the asset data. 'whence' uses the
96 off_t AAsset_seek(AAsset* asset, off_t offset, int whence);
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/android/
asset_manager.h 91 * Seek to the specified offset within the asset data. 'whence' uses the
96 off_t AAsset_seek(AAsset* asset, off_t offset, int whence);
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/android/
asset_manager.h 91 * Seek to the specified offset within the asset data. 'whence' uses the
96 off_t AAsset_seek(AAsset* asset, off_t offset, int whence);
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/android/
asset_manager.h 91 * Seek to the specified offset within the asset data. 'whence' uses the
96 off_t AAsset_seek(AAsset* asset, off_t offset, int whence);
  /bionic/libc/bionic/
legacy_32_bit_support.cpp 72 off64_t lseek64(int fd, off64_t off, int whence) {
76 if (__llseek(fd, off_hi, off_lo, &result, whence) < 0) {
  /external/chromium_org/net/base/
file_stream.cc 46 int FileStream::Seek(Whence whence,
52 context_->SeekAsync(whence, offset, callback);
file_stream_context.h 99 void SeekAsync(Whence whence,
170 IOResult SeekFileImpl(Whence whence, int64 offset);
mock_file_stream.h 31 virtual int Seek(net::Whence whence, int64 offset,
file_stream_context_posix.cc 43 // Make sure our Whence mappings match the system headers.
103 FileStream::Context::IOResult FileStream::Context::SeekFileImpl(Whence whence,
106 static_cast<int>(whence));
file_stream_context_win.cc 18 // Ensure that we can just use our Whence values directly.
114 FileStream::Context::IOResult FileStream::Context::SeekFileImpl(Whence whence,
118 DWORD move_method = static_cast<DWORD>(whence);
mock_file_stream.cc 36 int MockFileStream::Seek(Whence whence, int64 offset,
42 return FileStream::Seek(whence, offset, wrapped_callback);
  /external/stlport/src/details/
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 ) {
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/details/
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 ) {
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);
  /external/chromium_org/third_party/zlib/
gzlib.c 277 z_off64_t ZEXPORT gzseek64(file, offset, whence)
280 int whence;
298 if (whence != SEEK_SET && whence != SEEK_CUR)
302 if (whence == SEEK_SET)
353 z_off_t ZEXPORT gzseek(file, offset, whence)
356 int whence;
360 ret = gzseek64(file, (z_off64_t)offset, whence);
  /external/qemu/distrib/zlib-1.2.8/
gzlib.c 362 z_off64_t ZEXPORT gzseek64(file, offset, whence)
365 int whence;
383 if (whence != SEEK_SET && whence != SEEK_CUR)
387 if (whence == SEEK_SET)
439 z_off_t ZEXPORT gzseek(file, offset, whence)
442 int whence;
446 ret = gzseek64(file, (z_off64_t)offset, whence);
  /external/zlib/src/
gzlib.c 362 z_off64_t ZEXPORT gzseek64(file, offset, whence)
365 int whence;
383 if (whence != SEEK_SET && whence != SEEK_CUR)
387 if (whence == SEEK_SET)
439 z_off_t ZEXPORT gzseek(file, offset, whence)
442 int whence;
446 ret = gzseek64(file, (z_off64_t)offset, whence);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_wrap_dummy.cc 30 int _real_lseek(int fd, off_t offset, int whence, off_t* new_offset) {
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
FwdLockConv.h 97 * @param[in] whence One of SEEK_SET, SEEK_CUR, and SEEK_END.
102 typedef off64_t FwdLockConv_LSeekFunc_t(int fileDesc, off64_t offset, int whence);
  /external/e2fsprogs/lib/ext2fs/
fileio.c 338 int whence, __u64 *ret_pos)
342 if (whence == EXT2_SEEK_SET)
344 else if (whence == EXT2_SEEK_CUR)
346 else if (whence == EXT2_SEEK_END)
358 int whence, ext2_off_t *ret_pos)
364 retval = ext2fs_file_llseek(file, loffset, whence, &ret_loffset);
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
gzlib.c 365 int whence)
383 if (whence != SEEK_SET && whence != SEEK_CUR)
387 if (whence == SEEK_SET)
442 int whence)
446 ret = gzseek64(file, (z_off64_t)offset, whence);
  /external/chromium_org/media/filters/
ffmpeg_glue.cc 30 static int64 AVIOSeekOperation(void* opaque, int64 offset, int whence) {
33 switch (whence) {

Completed in 359 milliseconds

1 2 34 5 6 7 8 91011