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

  /bionic/libc/bionic/
pread.c 31 ssize_t pread(int fd, void *buf, size_t nbytes, off_t offset) function
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/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/i686-linux-glibc2.7-4.6/sysroot/usr/include/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.7-4.6/sysroot/usr/include/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
  /frameworks/av/drm/libdrmframework/
DrmManagerClient.cpp 161 ssize_t DrmManagerClient::pread( function in class:DrmManagerClient
163 return mDrmManagerClientImpl->pread(mUniqueId, decryptHandle, buffer, numBytes, offset);
DrmManagerClientImpl.cpp 325 ssize_t DrmManagerClientImpl::pread(int uniqueId, sp<DecryptHandle> &decryptHandle, function in class:DrmManagerClientImpl
329 retCode = getDrmManagerService()->pread(
  /frameworks/av/drm/common/
DrmEngineBase.cpp 167 ssize_t DrmEngineBase::pread( function in class:DrmEngineBase
IDrmManagerService.cpp 779 ssize_t BpDrmManagerService::pread( function in class:BpDrmManagerService
794 remote()->transact(PREAD, data, &reply);
    [all...]
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 122 @Override public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException { method in class:BlockGuardOs
124 return os.pread(fd, buffer, offset);
127 @Override public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException { method in class:BlockGuardOs
129 return os.pread(fd, bytes, byteOffset, byteCount, offset);
Os.java 93 public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException; method in interface:Os
94 public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException; method in interface:Os
Posix.java 94 public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException { method in class:Posix
101 public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException { method in class:Posix
ForwardingOs.java 100 public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException { return os.pread(fd, buffer, offset); } method in class:ForwardingOs
101 public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException { return os.pread(fd, bytes, byteOffset, byteCount, offset); } method in class:ForwardingOs
  /frameworks/av/drm/drmserver/
DrmManager.cpp 555 ssize_t DrmManager::pread(int uniqueId, DecryptHandle* decryptHandle, function in class:DrmManager
562 result = drmEngine->pread(uniqueId, decryptHandle, buffer, numBytes, offset);
DrmManagerService.cpp 268 ssize_t DrmManagerService::pread(int uniqueId, DecryptHandle* decryptHandle, function in class:DrmManagerService
270 ALOGV("Entering pread");
274 return mDrmManager->pread(uniqueId, decryptHandle, buffer, numBytes, offset);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
unistd.h 343 extern ssize_t pread (int __fd, void *__buf, size_t __nbytes,
355 extern ssize_t __REDIRECT (pread, (int __fd, void *__buf, size_t __nbytes,
362 # define pread pread64 macro
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
unistd.h 343 extern ssize_t pread (int __fd, void *__buf, size_t __nbytes,
355 extern ssize_t __REDIRECT (pread, (int __fd, void *__buf, size_t __nbytes,
362 # define pread pread64 macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
unistd.h 343 extern ssize_t pread (int __fd, void *__buf, size_t __nbytes,
355 extern ssize_t __REDIRECT (pread, (int __fd, void *__buf, size_t __nbytes,
362 # define pread pread64 macro
    [all...]
  /external/bison/darwin-lib/
unistd.h 1487 # undef pread macro
    [all...]
  /external/bison/linux-lib/
unistd.h 1487 # undef pread macro
    [all...]
  /external/valgrind/main/coregrind/
m_libcfile.c 594 SysRes VG_(pread) ( Int fd, void* buf, Int count, OffT offset ) function
    [all...]
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 415 /// ssize_t pread(int fildes, void *buf, size_t nbyte, off_t offset);
416 pread, enumerator in enum:llvm::LibFunc::Func

Completed in 690 milliseconds