HomeSort by relevance Sort by last modified time
    Searched refs:lseek (Results 226 - 250 of 385) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libmtp/examples/
detect.c 235 lseek(tmpfiledescriptor, 0, SEEK_SET);
  /external/mksh/src/
histrap.c 733 histfsize = lseek(histfd, (off_t)0, SEEK_END);
821 histfsize = lseek(histfd, (off_t)0, SEEK_END);
889 sizenow = lseek(histfd, (off_t)0, SEEK_END);
924 histfsize = lseek(histfd, (off_t)0, SEEK_END);
    [all...]
  /external/qemu/android/
snapshot.c 62 /* Wrapper around lseek(), exit()s on error.
67 off_t ret = lseek(fd, offset, whence);
  /external/qemu/android/utils/
mapfile.c 143 ssize_t res = lseek((int)(ptrdiff_t)handle, offset, SEEK_SET);
  /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 11 #include <unistd.h> // lseek
145 lseek(fh, 0, SEEK_SET);
  /frameworks/base/core/jni/
android_hardware_UsbDeviceConnection.cpp 92 lseek(fd, 0, SEEK_SET);
  /frameworks/base/graphics/java/android/graphics/pdf/
PdfEditor.java 75 Libcore.os.lseek(input.getFileDescriptor(), 0, OsConstants.SEEK_SET);
PdfRenderer.java 146 Libcore.os.lseek(input.getFileDescriptor(), 0, OsConstants.SEEK_SET);
  /hardware/intel/img/psb_video/fw/msvdx/
msvdx_bin.c 55 unsigned long lseek; local
  /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/core/fastbootd/
commands.c 371 off_t len = lseek(old_fd, 0, SEEK_END);
  /system/vold/
Loop.cpp 301 if (lseek(fd, ((*nr_sec - 1) * 512), SEEK_SET) < 0) {
302 SLOGE("lseek failed (%s)", strerror(errno));
  /frameworks/base/libs/androidfw/
BackupHelpers.cpp 229 fileSize = lseek(fd, 0, SEEK_END);
230 lseek(fd, 0, SEEK_SET);
323 lseek(fd, 0, SEEK_SET);
875 amt = lseek(fd, 0, SEEK_END);
880 lseek(fd, 0, SEEK_SET);
    [all...]
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_unittest.cc 471 ASSERT_NE(lseek(file, 0, SEEK_SET), (off_t)-1);
504 ASSERT_NE(lseek(file, 0, SEEK_SET), (off_t)-1);
  /frameworks/base/core/java/android/provider/
DocumentsContract.java     [all...]
  /frameworks/native/cmds/dumpstate/
utils.c 619 if (lseek(fd, 0, SEEK_END) < 0) {
620 fprintf(stderr, "lseek: %s\n", strerror(errno));
627 if (lseek(fd, 0, SEEK_END) < 0) {
628 fprintf(stderr, "lseek: %s\n", strerror(errno));
  /libcore/luni/src/main/java/android/system/
Os.java 248 * See <a href="http://man7.org/linux/man-pages/man2/lseek.2.html">lseek(2)</a>.
250 public static long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { return Libcore.os.lseek(fd, offset, whence); } method in class:Os
  /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); } method in class:ForwardingOs
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/sys/
linux-unistd.h 60 off_t lseek (int, off_t, int);
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/sys/
linux-unistd.h 60 off_t lseek (int, off_t, int);
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/sys/
linux-unistd.h 60 off_t lseek (int, off_t, int);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/sys/
linux-unistd.h 60 off_t lseek (int, off_t, int);

Completed in 1352 milliseconds

1 2 3 4 5 6 7 8 91011>>