Searched defs:pread (Results 1 - 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/ch/
H A DNativeDispatcher.java42 * 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
H A DFileDispatcherImpl.java56 int pread(FileDescriptor fd, long address, int len, long position) method in class:FileDispatcherImpl
/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java227 @Override public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { method in class:BlockGuardOs
229 return os.pread(fd, buffer, offset);
232 @Override public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { method in class:BlockGuardOs
234 return os.pread(fd, bytes, byteOffset, byteCount, offset);
H A DForwardingOs.java142 public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { return os.pread(fd, buffer, offset); } method in class:ForwardingOs
143 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 DLinux.java133 public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { method in class:Linux
146 public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { method in class:Linux
H A DOs.java129 public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException; method in interface:Os
130 public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException; method in interface:Os
/libcore/luni/src/main/java/android/system/
H A DOs.java387 * See <a href="http://man7.org/linux/man-pages/man2/pread.2.html">pread(2)</a>.
389 public static int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { return Libcore.os.pread(fd, buffer, offset); } method in class:Os
392 * See <a href="http://man7.org/linux/man-pages/man2/pread.2.html">pread(2)</a>.
394 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

Completed in 219 milliseconds