Home
last modified time | relevance | path

Searched refs:pwrite (Results 1 – 10 of 10) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/ch/
DNativeDispatcher.java61 int pwrite(FileDescriptor fd, long address, int len, long position) in pwrite() method in NativeDispatcher
DFileDispatcherImpl.java76 int pwrite(FileDescriptor fd, long address, int len, long position) in pwrite() method in FileDispatcherImpl
DIOUtil.java89 written = nd.pwrite(fd, in writeFromNativeBuffer()
/libcore/luni/src/main/java/libcore/io/
DBlockGuardOs.java237 …@Override public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoExcepti… in pwrite() method in BlockGuardOs
239 return os.pwrite(fd, buffer, offset); in pwrite()
242 …@Override public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long o… in pwrite() method in BlockGuardOs
244 return os.pwrite(fd, bytes, byteOffset, byteCount, offset); in pwrite()
DForwardingOs.java144 …public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, Interr… in pwrite() method in ForwardingOs
145 …t pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws Errno… in pwrite() method in ForwardingOs
DOs.java131 …public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, Interr… in pwrite() method
132 …public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) thr… in pwrite() method
DLinux.java151 …public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, Interr… in pwrite() method in Linux
164 …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/
DOs.java399 …static int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, Interr… in pwrite() method in Os
404pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoEx… in pwrite() method in Os
/libcore/ojluni/src/main/native/
DFileDispatcherImpl.c56 #define pwrite64 pwrite
/libcore/luni/src/test/java/libcore/libcore/io/
DOsTest.java206 written = Libcore.os.pwrite(fd, byteBuffer, 64 /* offset */); in test_byteBufferPositions_write_pwrite()
211 written = Libcore.os.pwrite(fd, byteBuffer, 64 /* offset */); in test_byteBufferPositions_write_pwrite()