Home
last modified time | relevance | path

Searched defs:buffers (Results 1 – 11 of 11) sorted by relevance

/libcore/luni/src/main/java/java/nio/channels/
DScatteringByteChannel.java52 public long read(ByteBuffer[] buffers) throws IOException; in read()
88 public long read(ByteBuffer[] buffers, int offset, int length) in read()
DGatheringByteChannel.java56 public long write(ByteBuffer[] buffers) throws IOException; in write()
93 public long write(ByteBuffer[] buffers, int offset, int length) in write()
DFileChannel.java416 public final long read(ByteBuffer[] buffers) throws IOException { in read()
455 public abstract long read(ByteBuffer[] buffers, int start, int number) in read()
715 public final long write(ByteBuffer[] buffers) throws IOException { in write()
755 public abstract long write(ByteBuffer[] buffers, int offset, int length) in write()
/libcore/luni/src/test/java/libcore/java/nio/channels/
DFileChannelTest.java72 … ByteBuffer[] buffers = new ByteBuffer[] { ByteBuffer.allocateDirect(4), ByteBuffer.allocate(4) }; in test_readv() local
89 … ByteBuffer[] buffers = new ByteBuffer[] { ByteBuffer.allocateDirect(4), ByteBuffer.allocate(4) }; in test_writev() local
/libcore/luni/src/main/java/java/nio/
DPipeImpl.java92 public long read(ByteBuffer[] buffers) throws IOException { in read()
96 public long read(ByteBuffer[] buffers, int offset, int length) throws IOException { in read()
127 public long write(ByteBuffer[] buffers) throws IOException { in write()
131 public long write(ByteBuffer[] buffers, int offset, int length) throws IOException { in write()
DFileChannelImpl.java336 public long read(ByteBuffer[] buffers, int offset, int length) throws IOException { in read()
501 public long write(ByteBuffer[] buffers, int offset, int length) throws IOException { in write()
513 …static int calculateTotalRemaining(ByteBuffer[] buffers, int offset, int length, boolean copyingIn… in calculateTotalRemaining()
/libcore/luni/src/main/java/libcore/io/
DBlockGuardOs.java152 …@Override public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) t… in readv()
194 …@Override public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) … in writev()
DForwardingOs.java97 …public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws Errn… in readv()
127 …public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws Err… in writev()
DOs.java90 …public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws Errn… in readv()
121 …public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws Err… in writev()
DPosix.java121 …public native int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) thro… in readv()
181 …public native int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) thr… in writev()
/libcore/luni/src/main/native/
Dlibcore_io_Posix.cpp969 static jint Posix_readv(JNIEnv* env, jobject, jobject javaFd, jobjectArray buffers, jintArray offse… in Posix_readv()
1225 static jint Posix_writev(JNIEnv* env, jobject, jobject javaFd, jobjectArray buffers, jintArray offs… in Posix_writev()