/libcore/ojluni/src/main/java/sun/nio/ch/ |
D | NativeDispatcher.java | 61 int pwrite(FileDescriptor fd, long address, int len, long position) in pwrite() method in NativeDispatcher
|
D | FileDispatcherImpl.java | 76 int pwrite(FileDescriptor fd, long address, int len, long position) in pwrite() method in FileDispatcherImpl
|
D | IOUtil.java | 89 written = nd.pwrite(fd, in writeFromNativeBuffer()
|
/libcore/luni/src/main/java/libcore/io/ |
D | BlockGuardOs.java | 283 …@Override public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoExcepti… in pwrite() method in BlockGuardOs 285 return super.pwrite(fd, buffer, offset); in pwrite() 289 …@Override public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long o… in pwrite() method in BlockGuardOs 291 return super.pwrite(fd, bytes, byteOffset, byteCount, offset); in pwrite()
|
D | ForwardingOs.java | 174 …public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, Interr… in pwrite() method in ForwardingOs 175 …t pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws Errno… in pwrite() method in ForwardingOs
|
D | Os.java | 147 …public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, Interr… in pwrite() method 148 …public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) thr… in pwrite() method
|
D | Linux.java | 157 …public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, Interr… in pwrite() method in Linux 170 …public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) thr… in pwrite() method in Linux
|
/libcore/luni/src/main/java/android/system/ |
D | Os.java | 453 …static int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, Interr… in pwrite() method in Os 458 …pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoEx… in pwrite() method in Os
|
/libcore/ojluni/src/main/native/ |
D | FileDispatcherImpl.c | 58 #define pwrite64 pwrite
|
/libcore/luni/src/test/java/libcore/android/system/ |
D | OsTest.java | 207 written = Os.pwrite(fd, byteBuffer, 64 /* offset */); in test_byteBufferPositions_write_pwrite() 212 written = Os.pwrite(fd, byteBuffer, 64 /* offset */); in test_byteBufferPositions_write_pwrite()
|