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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-arm64/syscalls/
pread64.S 5 ENTRY(pread64) function
14 END(pread64)
16 ALIAS_SYMBOL(pread, pread64)
  /bionic/libc/arch-x86_64/syscalls/
pread64.S 5 ENTRY(pread64) function
16 END(pread64)
18 ALIAS_SYMBOL(pread, pread64)
  /bionic/libc/arch-mips64/syscalls/
pread64.S 5 ENTRY(pread64) function
25 END(pread64)
27 ALIAS_SYMBOL(pread, pread64)
  /bionic/libc/arch-mips/syscalls/
pread64.S 5 ENTRY(pread64) function
19 END(pread64)
  /bionic/libc/arch-arm/syscalls/
pread64.S 5 ENTRY(pread64) function
22 END(pread64)
  /bionic/libc/bionic/
__pread64_chk.cpp 35 __fortify_chk_fail("pread64: prevented write past end of buffer", 0);
39 __fortify_chk_fail("pread64: count > SSIZE_MAX", 0);
42 return pread64(fd, buf, count, offset);
legacy_32_bit_support.cpp 73 // There is no pread for 32-bit off_t, so we need to widen and call pread64.
75 return pread64(fd, buf, byte_count, static_cast<off64_t>(offset));
  /bionic/libc/arch-x86/syscalls/
pread64.S 5 ENTRY(pread64) function
49 END(pread64)
  /frameworks/av/services/mediacodec/minijail/seccomp_policy/
mediacodec-seccomp-arm.policy 24 pread64: 1
  /bionic/libc/include/
unistd.h 180 __RENAME(pread64); variable
193 extern ssize_t pread64(int __fd, void* __buf, size_t __count, off64_t __offset) __INTRODUCED_IN(21);
261 __errordecl(__pread64_dest_size_error, "pread64 called with size bigger than destination");
262 __errordecl(__pread64_count_toobig_error, "pread64 called with count > SSIZE_MAX");
263 extern ssize_t __pread64_real(int, void*, size_t, off64_t) __RENAME(pread64); variable
360 ssize_t pread64(int fd, void* buf, size_t count, off64_t offset) { function
  /external/valgrind/memcheck/tests/x86-solaris/
scalar.stderr.exp 185 Syscall param pread64(fd) contains uninitialised byte(s)
188 Syscall param pread64(buf) contains uninitialised byte(s)
191 Syscall param pread64(count) contains uninitialised byte(s)
194 Syscall param pread64(offset_1) contains uninitialised byte(s)
197 Syscall param pread64(offset_2) contains uninitialised byte(s)
200 Syscall param pread64(buf) points to unaddressable byte(s)
  /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
  /system/core/include/utils/
Compat.h 32 static inline ssize_t pread64(int fd, void* buf, size_t nbytes, off64_t offset) { function
  /external/sqlite/dist/
Android.patch 59 { "pread64", (sqlite3_syscall_ptr)0, 0 },
62 +// Bionic defines pread64 using off64_t rather than off_t.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/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.15-4.8/sysroot/usr/include/i386-linux-gnu/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.15-4.8/sysroot/usr/include/x86_64-linux-gnu/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
  /external/ltrace/sysdeps/linux-gnu/cris/
syscallent.h 201 "pread64",
  /libcore/ojluni/src/main/native/
FileDispatcherImpl.c 51 #define pread64 pread macro
76 return convertReturnVal(env, pread64(fd, buf, len, offset), JNI_TRUE);
  /system/vold/bench/
benchgen.py 108 interesting = ["mmap2","read","write","pread64","pwrite64","fsync","fdatasync","openat","close","lseek","_llseek"]
222 elif e.call == "pread64":
  /development/ndk/platforms/android-12/arch-arm/symbols/
libc.so.functions.txt 462 pread64
  /development/ndk/platforms/android-12/arch-mips/symbols/
libc.so.functions.txt 445 pread64
  /development/ndk/platforms/android-12/arch-x86/symbols/
libc.so.functions.txt 442 pread64
  /development/ndk/platforms/android-12/include/
unistd.h 137 extern ssize_t pread64(int, void *, size_t, off64_t);
  /development/ndk/platforms/android-14/arch-arm/symbols/
libc.so.functions.txt 462 pread64

Completed in 744 milliseconds

1 2 3 4 5 6 7 8 91011>>