Searched defs:buffers (Results 1 – 11 of 11) sorted by relevance
| /libcore/luni/src/main/java/java/nio/channels/ |
| D | ScatteringByteChannel.java | 52 public long read(ByteBuffer[] buffers) throws IOException; in read() 88 public long read(ByteBuffer[] buffers, int offset, int length) in read()
|
| D | GatheringByteChannel.java | 56 public long write(ByteBuffer[] buffers) throws IOException; in write() 93 public long write(ByteBuffer[] buffers, int offset, int length) in write()
|
| D | FileChannel.java | 416 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/ |
| D | FileChannelTest.java | 72 … 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/ |
| D | PipeImpl.java | 82 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()
|
| D | FileChannelImpl.java | 341 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/ |
| D | BlockGuardOs.java | 152 …@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()
|
| D | Os.java | 99 …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()
|
| D | ForwardingOs.java | 106 …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()
|
| D | Posix.java | 130 …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/ |
| D | libcore_io_Posix.cpp | 1046 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()
|