/libcore/ojluni/src/main/java/sun/nio/ch/ |
D | NativeDispatcher.java | 49 int pread(FileDescriptor fd, long address, int len, long position) in pread() method in NativeDispatcher
|
D | FileDispatcherImpl.java | 56 int pread(FileDescriptor fd, long address, int len, long position) in pread() method in FileDispatcherImpl
|
D | IOUtil.java | 220 n = nd.pread(fd, ((DirectBuffer)bb).address() + pos, in readIntoNativeBuffer()
|
/libcore/luni/src/main/java/libcore/io/ |
D | BlockGuardOs.java | 227 …@Override public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoExceptio… in pread() method in BlockGuardOs 229 return os.pread(fd, buffer, offset); in pread() 232 …@Override public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long of… in pread() method in BlockGuardOs 234 return os.pread(fd, bytes, byteOffset, byteCount, offset); in pread()
|
D | ForwardingOs.java | 142 …public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, Interru… in pread() method in ForwardingOs 143 …nt pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws Errno… in pread() method in ForwardingOs
|
D | Os.java | 129 …public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, Interru… in pread() method 130 …public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) thro… in pread() method
|
D | Linux.java | 133 …public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, Interru… in pread() method in Linux 146 …public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) thro… in pread() method in Linux
|
/libcore/luni/src/main/java/android/system/ |
D | Os.java | 389 … static int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, Interr… in pread() method in Os 394 …pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoExc… in pread() method in Os
|
/libcore/ojluni/src/main/native/ |
D | FileDispatcherImpl.c | 55 #define pread64 pread
|
D | zip_util.c | 157 return pread(zfd, buf, nbytes, offset); in ZFILE_read()
|
/libcore/luni/src/test/java/libcore/libcore/io/ |
D | OsTest.java | 234 read = Libcore.os.pread(fd, byteBuffer, 64 /* offset */); in test_byteBufferPositions_read_pread() 239 read = Libcore.os.pread(fd, byteBuffer, 64 /* offset */); in test_byteBufferPositions_read_pread()
|