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

1 2 3 4 5 67 8 91011

  /external/chromium_org/native_client_sdk/src/examples/demo/nacl_io_demo/
example.js 151 var whence = parseInt($('fseekWhence').value, 10);
152 postCall('fseek', filehandle, offset, whence, function(filehandle, filepos) {
handlers.c 519 * 2: An integer representing the whence parameter of standard fseek.
520 * whence = 0: seek from the beginning of the file
521 * whence = 1: seek from the current file position
522 * whence = 2: seek from the end of the file
535 PARAM_INT(2, whence);
537 int result = fseek(file, offset, whence);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_intercept.h 97 off_t ki_lseek(int fd, off_t offset, int whence);
kernel_proxy.h 122 virtual off_t lseek(int fd, off_t offset, int whence);
kernel_wrap.h 91 off_t NAME(lseek)(int fd, off_t offset, int whence) NOTHROW;
kernel_intercept.cc 265 off_t ki_lseek(int fd, off_t offset, int whence) {
267 return s_state.kp->lseek(fd, offset, whence);
  /external/yaffs2/yaffs2/direct/
yaffsfs.c 650 off_t yaffs_lseek(int fd, off_t offset, int whence)
666 else if(whence == SEEK_SET)
673 else if(whence == SEEK_CUR)
680 else if(whence == SEEK_END)
  /bootable/recovery/updater/
blockimg.c 109 static void check_lseek(int fd, off64_t offset, int whence) {
111 off64_t ret = lseek64(fd, offset, whence);
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
_beos.h 527 NSPR_API(PRInt32) _MD_lseek(PRFileDesc *fd, PRInt32 offset, int whence);
528 NSPR_API(PRInt64) _MD_lseek64(PRFileDesc *fd, PRInt64 offset, int whence);
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prio.h     [all...]
  /libcore/luni/src/main/java/libcore/io/
ForwardingOs.java 105 public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { return os.lseek(fd, offset, whence); }
  /development/ndk/platforms/android-3/include/
zlib.h     [all...]
  /external/chromium_org/sdch/open-vcdiff/src/zlib/
zlib.h     [all...]
  /external/valgrind/main/coregrind/
m_libcfile.c 234 Off64T VG_(lseek) ( Int fd, Off64T offset, Int whence )
241 (UWord)&result, whence);
244 SysRes res = VG_(do_syscall3)(__NR_lseek, fd, offset, whence);
250 offset & 0xffffffff, offset >> 32, whence);
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
unistd.in.h 511 extern off_t lseek (int fd, off_t offset, int whence);
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
zlib.h     [all...]
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/
zlib.h     [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/
zlib.h     [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
zlib.h     [all...]
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/
zlib.h     [all...]
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
zlib.h     [all...]
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/
zlib.h     [all...]
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/
zlib.h     [all...]
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/
zlib.h     [all...]
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/
zlib.h     [all...]

Completed in 1398 milliseconds

1 2 3 4 5 67 8 91011