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

1 2 3 45 6 7 8 91011

  /frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/
FwdLockEngine.h 458 * @param whence One of SEEK_SET, SEEK_CUR, and SEEK_END.
468 int whence);
473 int whence);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_handle.h 63 Error Seek(off_t offset, int whence, off_t* out_offset);
kernel_wrap_newlib.cc 124 int WRAP(seek)(int fd, off_t offset, int whence, off_t* new_offset) {
125 *new_offset = ki_lseek(fd, offset, whence);
300 int _real_lseek(int fd, off_t offset, int whence, off_t* new_offset) {
302 return REAL(seek)(fd, offset, whence, new_offset);
kernel_handle.cc 56 Error KernelHandle::Seek(off_t offset, int whence, off_t* out_offset) {
67 switch (whence) {
  /packages/apps/OMA-DM/engine/dmlib/dmengine/dm_persist/hdr/
SyncML_DM_FileHandle.H 65 SYNCML_DM_RET_STATUS_T seek(XPL_FS_SEEK_MODE_T whence, INT32 offset);
  /system/core/libcutils/
open_memstream.c 164 static fpos_t seek_memstream(void* cookie, fpos_t offset, int whence)
169 if (whence == SEEK_CUR) {
171 } else if (whence == SEEK_END) {
  /external/stlport/src/details/
fstream_win32io.cpp 549 int whence; local
555 whence = FILE_BEGIN;
558 whence = FILE_CURRENT;
563 whence = FILE_END;
571 li.LowPart = SetFilePointer(_M_file_id, li.LowPart, &li.HighPart, whence);
  /ndk/sources/cxx-stl/stlport/src/details/
fstream_win32io.cpp 549 int whence; local
555 whence = FILE_BEGIN;
558 whence = FILE_CURRENT;
563 whence = FILE_END;
571 li.LowPart = SetFilePointer(_M_file_id, li.LowPart, &li.HighPart, whence);
  /external/qemu/distrib/sdl-1.2.15/src/file/
SDL_rwops.c 186 static int SDLCALL win32_file_seek(SDL_RWops *context, int offset, int whence)
197 if (whence == RW_SEEK_CUR && context->hidden.win32io.buffer.left) {
202 switch (whence) {
210 SDL_SetError("win32_file_seek: Unknown value for 'whence'");
323 static int SDLCALL stdio_seek(SDL_RWops *context, int offset, int whence)
325 if ( fseek(context->hidden.stdio.fp, offset, whence) == 0 ) {
367 static int SDLCALL mem_seek(SDL_RWops *context, int offset, int whence)
371 switch (whence) {
382 SDL_SetError("Unknown value for 'whence'");
  /frameworks/base/libs/androidfw/
Asset.cpp 309 * Do generic seek() housekeeping. Pass in the offset/whence values from
315 off64_t Asset::handleSeek(off64_t offset, int whence, off64_t curPosn, off64_t maxPosn)
319 switch (whence) {
330 ALOGW("unexpected whence %d\n", whence);
502 off64_t _FileAsset::seek(off64_t offset, int whence)
508 newPosn = handleSeek(offset, whence, mOffset, mLength);
802 off64_t _CompressedAsset::seek(off64_t offset, int whence)
807 newPosn = handleSeek(offset, whence, mOffset, mUncompressedLen);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
browser.c 75 void ui_browser__list_head_seek(struct ui_browser *browser, off_t offset, int whence)
83 switch (whence) {
110 void ui_browser__rb_tree_seek(struct ui_browser *browser, off_t offset, int whence)
115 switch (whence) {
562 void ui_browser__argv_seek(struct ui_browser *browser, off_t offset, int whence)
564 switch (whence) {
  /external/chromium_org/base/files/
file.h 120 enum Whence {
206 // defined by |whence|. Returns the resultant current position in the file
208 int64 Seek(Whence whence, int64 offset);
  /external/chromium_org/base/
platform_file.h 141 // defined by |whence|. Returns the resultant current position in the file
144 PlatformFileWhence whence,
platform_file_win.cc 22 PlatformFileWhence whence,
30 DWORD move_method = static_cast<DWORD>(whence);
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/nestegg/include/nestegg/
nestegg.h 105 @param whence Seek direction. One of #NESTEGG_SEEK_SET,
110 int (* seek)(int64_t offset, int whence, void * userdata);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_libc.h 89 uptr internal_lseek(fd_t fd, OFF_T offset, int whence);
  /external/e2fsprogs/lib/blkid/
blkidP.h 163 extern blkid_loff_t blkid_llseek(int fd, blkid_loff_t offset, int whence);
  /external/libvpx/libvpx/third_party/nestegg/include/nestegg/
nestegg.h 105 @param whence Seek direction. One of #NESTEGG_SEEK_SET,
110 int (* seek)(int64_t offset, int whence, void * userdata);
  /external/tremolo/Tremolo/
ivorbisfile.h 61 int (*seek_func) (void *datasource, ogg_int64_t offset, int whence);
  /external/valgrind/main/include/
pub_tool_libcfile.h 83 extern Off64T VG_(lseek) ( Int fd, Off64T offset, Int whence );
  /external/yaffs2/yaffs2/direct/
yaffsfs.h 179 off_t yaffs_lseek(int fd, off_t offset, int whence) ;
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/
FwdLockFile.c 316 off64_t FwdLockFile_lseek(int fileDesc, off64_t offset, int whence) {
323 switch (whence) {
325 newFilePos = lseek64(pSession->fileDesc, pSession->dataOffset + offset, whence);
329 newFilePos = lseek64(pSession->fileDesc, offset, whence);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/include/nestegg/
nestegg.h 105 @param whence Seek direction. One of #NESTEGG_SEEK_SET,
110 int (* seek)(int64_t offset, int whence, void * userdata);
  /packages/apps/OMA-DM/engine/xpl/hdr/
xpl_File.h 145 XPL_FS_SEEK_MODE_T whence,
  /external/chromium_org/media/filters/
ffmpeg_glue_unittest.cc 62 int64 Seek(int64 offset, int whence) {
63 return glue_->format_context()->pb->seek(protocol_.get(), offset, whence);

Completed in 827 milliseconds

1 2 3 45 6 7 8 91011