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.java82 public long read(ByteBuffer[] buffers) throws IOException { in read()
86 public long read(ByteBuffer[] buffers, int offset, int length) throws IOException { in read()
117 public long write(ByteBuffer[] buffers) throws IOException { in write()
121 public long write(ByteBuffer[] buffers, int offset, int length) throws IOException { in write()
DFileChannelImpl.java341 public long read(ByteBuffer[] buffers, int offset, int length) throws IOException { in read()
506 public long write(ByteBuffer[] buffers, int offset, int length) throws IOException { in write()
518 …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()
200 …@Override public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) … in writev()
DOs.java99 …public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws Errn… in readv()
138 …public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws Err… in writev()
DForwardingOs.java106 …public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws Errn… in readv()
144 …public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws Err… in writev()
DPosix.java130 …public native int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) thro… in readv()
204 …public native int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) thr… in writev()
/libcore/luni/src/main/native/
Dlibcore_io_Posix.cpp1046 static jint Posix_readv(JNIEnv* env, jobject, jobject javaFd, jobjectArray buffers, jintArray offse… in Posix_readv()
1358 static jint Posix_writev(JNIEnv* env, jobject, jobject javaFd, jobjectArray buffers, jintArray offs… in Posix_writev()