Searched refs:pread (Results 1 - 10 of 10) sorted by path

/libcore/luni/src/main/java/android/system/
H A DOs.java346 * See <a href="http://man7.org/linux/man-pages/man2/pread.2.html">pread(2)</a>.
348 public static int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { return Libcore.os.pread(fd, buffer, offset); } method in class:Os
351 * See <a href="http://man7.org/linux/man-pages/man2/pread.2.html">pread(2)</a>.
353 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/main/java/libcore/io/
H A DBlockGuardOs.java204 @Override public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { method in class:BlockGuardOs
206 return os.pread(fd, buffer, offset);
209 @Override public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { method in class:BlockGuardOs
211 return os.pread(fd, bytes, byteOffset, byteCount, offset);
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 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 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/test/java/libcore/io/
H A DOsTest.java217 read = Libcore.os.pread(fd, byteBuffer, 64 /* offset */);
222 read = Libcore.os.pread(fd, byteBuffer, 64 /* offset */);
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DFileDispatcherImpl.java49 int pread(FileDescriptor fd, long address, int len, long position) method in class:FileDispatcherImpl
H A DIOUtil.java220 n = nd.pread(fd, ((DirectBuffer)bb).address() + pos,
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
/libcore/ojluni/src/main/native/
H A DFileDispatcherImpl.c51 #define pread64 pread

Completed in 114 milliseconds