Searched refs:pread (Results 1 - 8 of 8) sorted by relevance

/libcore/luni/src/main/native/
H A DPortability.h38 #define pread64 pread
/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java203 @Override public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { method in class:BlockGuardOs
205 return os.pread(fd, buffer, offset);
208 @Override public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { method in class:BlockGuardOs
210 return os.pread(fd, bytes, byteOffset, byteCount, offset);
H A DOs.java117 public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException; method in interface:Os
118 public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException; method in interface:Os
H A DForwardingOs.java124 public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { return os.pread(fd, buffer, offset); } method in class:ForwardingOs
125 public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { return os.pread(fd, bytes, byteOffset, byteCount, offset); } method in class:ForwardingOs
H A DPosix.java118 public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { method in class:Posix
131 public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { method in class:Posix
/libcore/luni/src/main/java/android/system/
H A DOs.java340 * See <a href="http://man7.org/linux/man-pages/man2/pread.2.html">pread(2)</a>.
342 public static int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { return Libcore.os.pread(fd, buffer, offset); } method in class:Os
345 * See <a href="http://man7.org/linux/man-pages/man2/pread.2.html">pread(2)</a>.
347 public static int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { return Libcore.os.pread(fd, bytes, byteOffset, byteCount, offset); } method in class:Os
/libcore/luni/src/test/java/libcore/io/
H A DOsTest.java210 read = Libcore.os.pread(fd, byteBuffer, 64 /* offset */);
215 read = Libcore.os.pread(fd, byteBuffer, 64 /* offset */);
/libcore/luni/src/main/java/java/nio/
H A DFileChannelImpl.java309 bytesRead = Libcore.os.pread(fd, buffer, position);

Completed in 76 milliseconds