HomeSort by relevance Sort by last modified time
    Searched full:pread64 (Results 1 - 25 of 126) sorted by null

1 2 3 4 5 6

  /bionic/libc/arch-mips/syscalls/
pread64.S 4 .globl pread64
6 .ent pread64
8 pread64: label
22 .end pread64
  /bionic/libc/arch-arm/syscalls/
pread64.S 6 ENTRY(pread64) function
18 END(pread64)
  /bionic/libc/arch-x86/syscalls/
pread64.S 6 ENTRY(pread64) function
33 END(pread64)
  /bionic/libc/bionic/
pread.c 33 return pread64(fd, buf, nbytes, (off64_t)offset);
  /libcore/luni/src/main/native/
Portability.h 38 #define pread64 pread macro
  /system/core/include/utils/
Compat.h 35 static inline ssize_t pread64(int fd, void* buf, size_t nbytes, off64_t offset) { function
  /external/compiler-rt/lib/interception/
interception_type_test.cc 32 // pread64. In those cases we need OFF_T to match off_t. We don't care about the
  /external/sqlite/dist/
Android.patch 42 { "pread64", (sqlite3_syscall_ptr)0, 0 },
45 +// Bionic defines pread64 using off64_t rather than off_t.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
unistd.h 58 __off64_t __offset), pread64) __wur;
68 __wur __warnattr ("pread64 called with bigger length than size of "
106 pread64 (int __fd, void *__buf, size_t __nbytes, __off64_t __offset) function
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
unistd.h 58 __off64_t __offset), pread64) __wur;
68 __wur __warnattr ("pread64 called with bigger length than size of "
106 pread64 (int __fd, void *__buf, size_t __nbytes, __off64_t __offset) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
unistd.h 58 __off64_t __offset), pread64) __wur;
68 __wur __warnattr ("pread64 called with bigger length than size of "
106 pread64 (int __fd, void *__buf, size_t __nbytes, __off64_t __offset) function
  /art/runtime/base/unix_file/
fd_file.cc 77 int rc = TEMP_FAILURE_RETRY(pread64(fd_, buf, byte_count, offset));
  /external/chromium_org/third_party/sqlite/src/src/
test_syscall.c 25 ** ftruncate fcntl read pread pread64 write
128 /* 10 */ { "pread64", (sqlite3_syscall_ptr)ts_pread64, 0, 0, 0 },
314 ** A wrapper around pread64().
317 if( tsIsFailErrno("pread64") ){
  /external/chromium_org/third_party/sqlite/src/test/
sysfault.test 142 test_syscall install {open ftruncate close read pread pread64 write fallocate}
167 test_syscall errno pread64 EINTR
syscall.test 62 pread64 pwrite64 unlink openDirectory
  /bionic/libc/include/
unistd.h 136 extern ssize_t pread64(int, void *, size_t, off64_t);
  /frameworks/base/libs/androidfw/
ZipFileRO.cpp 574 * so we need to do an pread64() instead of a lseek64() + read() to
579 TEMP_FAILURE_RETRY(pread64(mFd, lfhBuf, sizeof(lfhBuf), localHdrOffset));
594 * For hosts don't have pread64() we cannot guarantee atomic reads from
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common_interceptors.inc 211 INTERCEPTOR(SSIZE_T, pread64, int fd, void *ptr, SIZE_T count, OFF64_T offset) {
213 COMMON_INTERCEPTOR_ENTER(ctx, pread64, fd, ptr, count, offset);
214 SSIZE_T res = REAL(pread64)(fd, ptr, count, offset);
221 #define INIT_PREAD64 INTERCEPT_FUNCTION(pread64)
    [all...]
sanitizer_internal_defs.h 73 // like pread and mmap, as opposed to pread64 and mmap64.
  /external/elfutils/libdwfl/
linux-proc-maps.c 269 ssize_t nread = pread64 (fd, data, maxread, (off64_t) address);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
unistd.h 357 pread64) __wur;
362 # define pread pread64
371 extern ssize_t pread64 (int __fd, void *__buf, size_t __nbytes,
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
unistd.h 357 pread64) __wur;
362 # define pread pread64
371 extern ssize_t pread64 (int __fd, void *__buf, size_t __nbytes,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
unistd.h 357 pread64) __wur;
362 # define pread pread64
371 extern ssize_t pread64 (int __fd, void *__buf, size_t __nbytes,
    [all...]
  /bionic/libc/arch-arm/
syscalls.mk 47 syscall_src += arch-arm/syscalls/pread64.S
  /bionic/libc/arch-mips/
syscalls.mk 51 syscall_src += arch-mips/syscalls/pread64.S

Completed in 1965 milliseconds

1 2 3 4 5 6