HomeSort by relevance Sort by last modified time
    Searched refs:lseek (Results 176 - 200 of 334) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/libpcap/
pcap-pf.c 110 lseek(pc->fd, 0L, SEEK_CUR) + pc->bufsize < 0) {
114 * read fails with EINVAL. The lseek()
117 (void)lseek(pc->fd, 0L, SEEK_SET);
  /external/llvm/lib/Support/
raw_ostream.cpp 472 off_t loc = ::lseek(FD, 0, SEEK_CUR);
571 pos = ::lseek(FD, off, SEEK_SET);
  /external/qemu/android/utils/
path.c 617 sz = lseek(fd, 0, SEEK_END);
623 if (lseek(fd, 0, SEEK_SET) != 0)
mapfile.c 145 ssize_t res = lseek((int)(ptrdiff_t)handle, offset, SEEK_SET);
  /frameworks/base/core/java/android/provider/
DocumentsContract.java 702 Libcore.os.lseek(fd, offset, SEEK_SET);
728 Libcore.os.lseek(fd, offset, SEEK_SET);
    [all...]
  /libcore/luni/src/main/java/java/nio/
FileChannelImpl.java 260 return Libcore.os.lseek(fd, 0L, SEEK_CUR);
272 Libcore.os.lseek(fd, newPosition, SEEK_SET);
  /system/core/init/
util.c 164 sz = lseek(fd, 0, SEEK_END);
167 if(lseek(fd, 0, SEEK_SET) != 0) goto oops;
  /dalvik/vm/
JarFile.cpp 289 dexOffset = lseek(fd, 0, SEEK_CUR);
  /external/chromium/net/disk_cache/
file_posix.cc 264 size_t ret = lseek(platform_file_, 0, SEEK_END);
  /external/chromium_org/components/nacl/loader/
nacl_listener.cc 62 // lseek() + write().
63 if (lseek(result_fd, size - 1, SEEK_SET) == -1) {
64 LOG(ERROR) << "lseek() failed: " << errno;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_wrap.h 69 off_t NAME(lseek)(int fd, off_t offset, int whence) NOTHROW;
  /external/chromium_org/net/disk_cache/
file_posix.cc 271 off_t ret = lseek(platform_file_, 0, SEEK_END);
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
port.h 374 inline off_t lseek(int fd, off_t offset, int whence) { function
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
port.h 371 inline off_t lseek(int fd, off_t offset, int whence) { function
  /external/libmtp/examples/
detect.c 235 lseek(tmpfiledescriptor, 0, SEEK_SET);
  /external/mksh/src/
histrap.c 732 histfsize = lseek(histfd, (off_t)0, SEEK_END);
820 histfsize = lseek(histfd, (off_t)0, SEEK_END);
888 sizenow = lseek(histfd, (off_t)0, SEEK_END);
923 histfsize = lseek(histfd, (off_t)0, SEEK_END);
    [all...]
  /external/qemu/android/
snapshot.c 67 /* Wrapper around lseek(), exit()s on error.
72 off_t ret = lseek(fd, offset, whence);
  /external/stlport/src/details/
fstream_unistd.cpp 61 # define LSEEK lseek
67 # define LSEEK lseek64
200 if ((openmode & (ios_base::ate | ios_base::app)) && (LSEEK(file_no, 0, SEEK_END) == -1)) {
285 // Wrapper for lseek or the like.
308 return LSEEK(_M_file_id, offset, whence);
322 if (LSEEK(_M_file_id, offset + len, SEEK_SET) < 0) {
  /external/valgrind/main/tests/
s390x_features.c 10 #include <unistd.h> // lseek
142 lseek(fh, 0, SEEK_SET);
  /frameworks/base/core/jni/
android_hardware_UsbDeviceConnection.cpp 92 lseek(fd, 0, SEEK_SET);
  /frameworks/base/libs/androidfw/
BackupData.cpp 326 int pos = lseek(m_fd, m_dataEndPos, SEEK_SET);
  /libcore/luni/src/main/native/
java_util_zip_Inflater.cpp 71 int rc = TEMP_FAILURE_RETRY(lseek(fd, off, SEEK_SET));
  /ndk/sources/cxx-stl/stlport/src/details/
fstream_unistd.cpp 61 # define LSEEK lseek
67 # define LSEEK lseek64
200 if ((openmode & (ios_base::ate | ios_base::app)) && (LSEEK(file_no, 0, SEEK_END) == -1)) {
285 // Wrapper for lseek or the like.
308 return LSEEK(_M_file_id, offset, whence);
322 if (LSEEK(_M_file_id, offset + len, SEEK_SET) < 0) {
  /ndk/sources/host-tools/ndk-stack/elff/
mapfile.c 145 ssize_t res = lseek((int)(ptrdiff_t)handle, offset, SEEK_SET);
  /system/extras/libpagemap/
pm_process.c 120 off = lseek(proc->pagemap_fd, firstpage * sizeof(uint64_t), SEEK_SET);

Completed in 4765 milliseconds

1 2 3 4 5 6 78 91011>>