HomeSort by relevance Sort by last modified time
    Searched refs:lseek (Results 1 - 25 of 535) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-arm64/syscalls/
lseek.S 5 ENTRY(lseek) function
14 END(lseek)
16 ALIAS_SYMBOL(lseek64, lseek)
  /bionic/libc/arch-x86_64/syscalls/
lseek.S 5 ENTRY(lseek) function
15 END(lseek)
17 ALIAS_SYMBOL(lseek64, lseek)
  /bionic/libc/arch-arm/syscalls/
lseek.S 5 ENTRY(lseek) function
16 END(lseek)
  /bionic/libc/arch-mips/syscalls/
lseek.S 5 ENTRY(lseek) function
19 END(lseek)
  /bionic/libc/arch-mips64/syscalls/
lseek.S 5 ENTRY(lseek) function
25 END(lseek)
27 ALIAS_SYMBOL(lseek64, lseek)
  /system/core/libcutils/tests/
trace-dev_test.cpp 33 lseek(tmp_file_.fd, 0, SEEK_SET);
55 ASSERT_EQ(0, lseek(atrace_marker_fd, 0, SEEK_SET));
68 ASSERT_EQ(ATRACE_MESSAGE_LENGTH - 1, lseek(atrace_marker_fd, 0, SEEK_CUR));
69 ASSERT_EQ(0, lseek(atrace_marker_fd, 0, SEEK_SET));
77 ASSERT_EQ(0, lseek(atrace_marker_fd, 0, SEEK_SET));
80 EXPECT_EQ(ATRACE_MESSAGE_LENGTH - 1, lseek(atrace_marker_fd, 0, SEEK_CUR));
81 ASSERT_EQ(0, lseek(atrace_marker_fd, 0, SEEK_SET));
91 ASSERT_EQ(ATRACE_MESSAGE_LENGTH - 1, lseek(atrace_marker_fd, 0, SEEK_CUR));
92 ASSERT_EQ(0, lseek(atrace_marker_fd, 0, SEEK_SET));
104 ASSERT_EQ(0, lseek(atrace_marker_fd, 0, SEEK_SET))
    [all...]
  /external/curl/src/
tool_cb_see.c 34 both represent the same value. Maximum offset used here when we lseek
67 if(LSEEK_ERROR == lseek(in->fd, 0, SEEK_SET))
73 if(LSEEK_ERROR == lseek(in->fd, step, SEEK_CUR))
82 if(LSEEK_ERROR == lseek(in->fd, offset, whence))
94 /* 64-bit lseek-like function unavailable */
95 # define _lseeki64(hnd,ofs,whence) lseek(hnd,ofs,whence)
100 /* 64-bit lseek-like function unavailable */
108 /* 64-bit lseek-like function unavailable */
110 # define _lseeki64(hnd,ofs,whence) lseek(hnd,ofs,whence)
  /system/core/libcutils/
load_file.cpp 34 sz = lseek(fd, 0, SEEK_END);
37 if(lseek(fd, 0, SEEK_SET) != 0) goto oops;
  /toolchain/binutils/binutils-2.27/gold/
pread.c 39 if (lseek(fd, offset, SEEK_SET) != offset)
  /external/puffin/src/
file_stream.cc 38 auto cur_off = lseek(fd_, 0, SEEK_CUR);
40 auto fsize = lseek(fd_, 0, SEEK_END);
42 cur_off = lseek(fd_, cur_off, SEEK_SET);
49 auto off = lseek(fd_, 0, SEEK_CUR);
56 auto off = lseek(fd_, offset, SEEK_SET);
  /bionic/libc/arch-x86/syscalls/
lseek.S 5 ENTRY(lseek) function
39 END(lseek)
  /bionic/tools/versioner/tests/preprocessor_file_offset_bits/expected/
foo.h 35 off_t lseek(int __fd, off_t __offset, int __whence) __RENAME(lseek64);
37 off_t lseek(int __fd, off_t __offset, int __whence);
  /bionic/tools/versioner/tests/preprocessor_file_offset_bits/headers/
foo.h 31 off_t lseek(int __fd, off_t __offset, int __whence) __RENAME(lseek64);
33 off_t lseek(int __fd, off_t __offset, int __whence);
  /external/ltp/testcases/kernel/io/ltp-aiodio/
read_checkzero.c 54 offset = lseek(fd, 4096, SEEK_END);
57 offset = lseek(fd, offset - 4096, SEEK_SET);
  /frameworks/base/core/jni/android/graphics/
Utils.h 63 fCurr = ::lseek(fd, 0, SEEK_CUR);
67 ::lseek(fFD, fCurr, SEEK_SET);
  /external/strace/tests/
lseek.c 44 * Let's call lseek with hope it will invoke lseek syscall.
46 long long rc = lseek(-1, offset, SEEK_SET);
47 printf("lseek(-1, %lld, SEEK_SET) = %lld %s (%m)\n",
51 printf("lseek(-1, %ld, SEEK_SET) = %ld %s (%m)\n",
  /external/strace/tests-m32/
lseek.c 44 * Let's call lseek with hope it will invoke lseek syscall.
46 long long rc = lseek(-1, offset, SEEK_SET);
47 printf("lseek(-1, %lld, SEEK_SET) = %lld %s (%m)\n",
51 printf("lseek(-1, %ld, SEEK_SET) = %ld %s (%m)\n",
  /external/strace/tests-mx32/
lseek.c 44 * Let's call lseek with hope it will invoke lseek syscall.
46 long long rc = lseek(-1, offset, SEEK_SET);
47 printf("lseek(-1, %lld, SEEK_SET) = %lld %s (%m)\n",
51 printf("lseek(-1, %ld, SEEK_SET) = %ld %s (%m)\n",
  /system/core/toolbox/upstream-netbsd/bin/dd/
dd_hostops.c 50 .op_lseek = lseek,
  /external/valgrind/none/tests/
mmap_fcntl_bug.c 32 initial = lseek(fd, 123, SEEK_SET);
35 if (lseek(fd, 0, SEEK_CUR) != 123)
50 if (lseek(fd, 0, SEEK_CUR) != 123)
  /system/core/adb/
adb_io_test.cpp 52 ASSERT_EQ(0, lseek(tf.fd, 0, SEEK_SET));
66 ASSERT_EQ(0, lseek(tf.fd, 0, SEEK_SET));
80 ASSERT_EQ(0, lseek(tf.fd, 0, SEEK_SET));
99 ASSERT_EQ(0, lseek(tf.fd, 0, SEEK_SET));
113 ASSERT_EQ(0, lseek(tf.fd, 0, SEEK_SET));
139 ASSERT_EQ(0, lseek(tf.fd, 0, SEEK_SET));
152 ASSERT_EQ(0, lseek(tf.fd, 0, SEEK_SET));
  /external/swiftshader/third_party/LLVM/runtime/libprofile/
PathProfiling.c 82 arrayHeaderLocation = lseek(outFile, 0, SEEK_CUR);
83 lseek(outFile, sizeof(PathProfileHeader), SEEK_CUR);
102 arrayCurrentLocation = lseek(outFile, 0, SEEK_CUR);
103 lseek(outFile, arrayHeaderLocation, SEEK_SET);
111 lseek(outFile, arrayCurrentLocation, SEEK_SET);
234 headerLocation = lseek(outFile, 0, SEEK_CUR);
235 lseek(outFile, 2*sizeof(uint32_t), SEEK_CUR);
253 currentLocation = lseek(outFile, 0, SEEK_CUR);
254 lseek(outFile, headerLocation, SEEK_SET);
262 lseek(outFile, currentLocation, SEEK_SET)
    [all...]
  /external/e2fsprogs/lib/blkid/
llseek.c 55 #define llseek lseek
102 return lseek(fd, (off_t) offset, whence);
141 return lseek(fd, (off_t) offset, origin);
  /external/e2fsprogs/lib/ext2fs/
llseek.c 56 #define my_llseek lseek
115 return lseek(fd, (off_t) offset, origin);
139 return lseek (fd, (off_t) offset, origin);
  /art/compiler/linker/
file_output_stream.cc 34 return lseek(file_->Fd(), offset, static_cast<int>(whence));

Completed in 1206 milliseconds

1 2 3 4 5 6 7 8 91011>>