HomeSort by relevance Sort by last modified time
    Searched defs:pread (Results 1 - 25 of 66) sorted by null

1 2 3

  /toolchain/binutils/binutils-2.27/gold/
pread.c 0 /* pread.c -- version of pread for gold. */
23 /* This file implements pread for systems which don't have it. This
24 file is only compiled if pread is not present on the system. This
25 is not an exact version of pread, as it does not preserve the
34 extern ssize_t pread (int, void *, size_t, off_t);
37 pread (int fd, void *buf, size_t count, off_t offset) function
  /bionic/libc/include/bits/fortify/
unistd.h 35 ssize_t __pread_real(int, void*, size_t, off_t) __RENAME(pread); variable
87 ssize_t pread(int fd, void* const __pass_object_size0 buf, size_t count, off_t offset)
89 __error_if_overflows_ssizet(count, pread)
90 __error_if_overflows_objectsize(count, __bos0(buf), pread) {
219 __errordecl(__pread_dest_size_error, "pread called with size bigger than destination");
220 __errordecl(__pread_count_toobig_error, "pread called with count > SSIZE_MAX");
259 ssize_t pread(int fd, void* buf, size_t count, off_t offset) { function
  /libcore/ojluni/src/main/java/sun/nio/ch/
NativeDispatcher.java 42 * Returns {@code true} if pread/pwrite needs to be synchronized with
49 int pread(FileDescriptor fd, long address, int len, long position) method in class:NativeDispatcher
FileDispatcherImpl.java 56 int pread(FileDescriptor fd, long address, int len, long position) method in class:FileDispatcherImpl
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
unistd.h 55 __off_t __offset), pread) __wur;
62 __wur __warnattr ("pread called with bigger length than size of "
73 pread (int __fd, void *__buf, size_t __nbytes, __off_t __offset) function
88 pread (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 55 __off_t __offset), pread) __wur;
62 __wur __warnattr ("pread called with bigger length than size of "
73 pread (int __fd, void *__buf, size_t __nbytes, __off_t __offset) function
88 pread (int __fd, void *__buf, size_t __nbytes, __off64_t __offset) function
  /bionic/libc/bionic/
legacy_32_bit_support.cpp 73 // There is no pread for 32-bit off_t, so we need to widen and call pread64.
74 ssize_t pread(int fd, void* buf, size_t byte_count, off_t offset) { function
  /device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
loadfile_machdep.h 53 /* XXX: cherry: This whole thing is glue between the NetBSD pread/vpbcopy etc. etc
62 #define READ(f, b, c) pread((f), LOADADDR(b), (c))
78 #define pread archsw.arch_readin macro
  /frameworks/av/drm/libdrmframework/
DrmManagerClient.cpp 161 ssize_t DrmManagerClient::pread( function in class:DrmManagerClient
163 return mDrmManagerClientImpl->pread(mUniqueId, decryptHandle, buffer, numBytes, offset);
NoOpDrmManagerClientImpl.cpp 213 ssize_t NoOpDrmManagerClientImpl::pread( function in class:android::NoOpDrmManagerClientImpl
  /prebuilts/go/darwin-x86/src/os/
file_unix.go 231 // pread reads len(b) bytes from the File starting at byte offset off.
234 func (f *File) pread(b []byte, off int64) (n int, err error) { func
235 n, err = f.pfd.Pread(b, off)
file_windows.go 209 // pread reads len(b) bytes from the File starting at byte offset off.
212 func (f *File) pread(b []byte, off int64) (n int, err error) { func
213 n, err = f.pfd.Pread(b, off)
file_plan9.go 252 // pread reads len(b) bytes from the File starting at byte offset off.
255 func (f *File) pread(b []byte, off int64) (n int, err error) { func
256 n, e := fixCount(syscall.Pread(f.fd, b, off))
  /prebuilts/go/linux-x86/src/os/
file_unix.go 231 // pread reads len(b) bytes from the File starting at byte offset off.
234 func (f *File) pread(b []byte, off int64) (n int, err error) { func
235 n, err = f.pfd.Pread(b, off)
file_windows.go 209 // pread reads len(b) bytes from the File starting at byte offset off.
212 func (f *File) pread(b []byte, off int64) (n int, err error) { func
213 n, err = f.pfd.Pread(b, off)
file_plan9.go 252 // pread reads len(b) bytes from the File starting at byte offset off.
255 func (f *File) pread(b []byte, off int64) (n int, err error) { func
256 n, e := fixCount(syscall.Pread(f.fd, b, off))
  /frameworks/av/drm/common/
DrmEngineBase.cpp 167 ssize_t DrmEngineBase::pread( function in class:DrmEngineBase
  /hardware/qcom/display/msm8909/sdm/include/utils/
sys.h 61 typedef ssize_t (*pread)(int, void *, size_t, off_t); typedef in class:sdm::Sys
76 static pread pread_;
  /hardware/qcom/display/msm8909w_3100/sdm/include/utils/
sys.h 61 typedef ssize_t (*pread)(int, void *, size_t, off_t); typedef in class:sdm::Sys
76 static pread pread_;
  /hardware/qcom/display/msm8996/sdm/include/utils/
sys.h 56 typedef ssize_t (*pread)(int, void *, size_t, off_t); typedef in class:sdm::Sys
70 static pread pread_;
  /hardware/qcom/display/msm8998/sdm/include/utils/
sys.h 61 typedef ssize_t (*pread)(int, void *, size_t, off_t); typedef in class:sdm::Sys
76 static pread pread_;
  /prebuilts/go/darwin-x86/src/syscall/
fd_nacl.go 38 pread([]byte, int64) (int, error)
180 func Pread(fd int, b []byte, offset int64) (int, error) {
185 return f.impl.pread(b, offset)
213 func (*defaultFileImpl) pread([]byte, int64) (int, error) { return 0, ENOSYS } func
255 // NaCl has no pread; simulate with seek and hope for no races.
268 func (f *naclFile) pread(b []byte, offset int64) (int, error) { func
  /prebuilts/go/linux-x86/src/syscall/
fd_nacl.go 38 pread([]byte, int64) (int, error)
180 func Pread(fd int, b []byte, offset int64) (int, error) {
185 return f.impl.pread(b, offset)
213 func (*defaultFileImpl) pread([]byte, int64) (int, error) { return 0, ENOSYS } func
255 // NaCl has no pread; simulate with seek and hope for no races.
268 func (f *naclFile) pread(b []byte, offset int64) (int, error) { func
  /system/core/base/
file.cpp 157 // Windows implementation of pread. Note that this DOES move the file descriptors read position,
159 static ssize_t pread(int fd, void* data, size_t byte_count, off64_t offset) { function in namespace:android::base
178 ssize_t n = TEMP_FAILURE_RETRY(pread(fd, p, byte_count, offset));
  /frameworks/av/drm/drmserver/
DrmManager.cpp 535 ssize_t DrmManager::pread(int uniqueId, DecryptHandle* decryptHandle, function in class:DrmManager
542 result = drmEngine->pread(uniqueId, decryptHandle, buffer, numBytes, offset);

Completed in 449 milliseconds

1 2 3