Home
last modified time | relevance | path

Searched refs:dsts (Results 1 – 14 of 14) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/ch/
DSourceChannelImpl.java183 public long read(ByteBuffer[] dsts, int offset, int length) in read() argument
186 if ((offset < 0) || (length < 0) || (offset > dsts.length - length)) in read()
188 return read(Util.subsequence(dsts, offset, length)); in read()
191 public long read(ByteBuffer[] dsts) throws IOException { in read() argument
192 if (dsts == null) in read()
203 n = IOUtil.read(fd, dsts, nd); in read()
DAsynchronousSocketChannelImpl.java217 ByteBuffer[] dsts, in implRead() argument
226 ByteBuffer[] dsts, in read() argument
276 return implRead(isScatteringRead, dst, dsts, timeout, unit, att, handler); in read()
301 public final <A> void read(ByteBuffer[] dsts, in read() argument
311 if ((offset < 0) || (length < 0) || (offset > dsts.length - length)) in read()
313 ByteBuffer[] bufs = Util.subsequence(dsts, offset, length); in read()
DUnixAsynchronousSocketChannelImpl.java497 ByteBuffer[] dsts, in implRead() argument
530 n = (int)IOUtil.read(fd, dsts, nd); in implRead()
541 this.readBuffers = dsts; in implRead()
DSocketChannelImpl.java463 public long read(ByteBuffer[] dsts, int offset, int length) in read() argument
466 if ((offset < 0) || (length < 0) || (offset > dsts.length - length)) in read()
481 n = IOUtil.read(fd, dsts, offset, length, nd); in read()
DDatagramChannelImpl.java604 public long read(ByteBuffer[] dsts, int offset, int length) in read() argument
607 if ((offset < 0) || (length < 0) || (offset > dsts.length - length)) in read()
622 n = IOUtil.read(fd, dsts, offset, length, nd); in read()
DFileChannelImpl.java208 public long read(ByteBuffer[] dsts, int offset, int length) in read() argument
211 if ((offset < 0) || (length < 0) || (offset > dsts.length - length)) in read()
225 n = IOUtil.read(fd, dsts, offset, length, nd); in read()
/libcore/ojluni/src/main/java/javax/net/ssl/
DSSLEngine.java1328 ByteBuffer [] dsts) throws SSLException { in unwrap() argument
1329 if (dsts == null) { in unwrap()
1332 return unwrap(src, dsts, 0, dsts.length); in unwrap()
1416 ByteBuffer [] dsts, int offset, int length) throws SSLException; in unwrap() argument
/libcore/ojluni/src/main/java/java/nio/channels/
DDatagramChannel.java497 public abstract long read(ByteBuffer[] dsts, int offset, int length) in read() argument
513 public final long read(ByteBuffer[] dsts) throws IOException { in read() argument
514 return read(dsts, 0, dsts.length); in read()
DSocketChannel.java473 public abstract long read(ByteBuffer[] dsts, int offset, int length) in read() argument
480 public final long read(ByteBuffer[] dsts) throws IOException { in read() argument
481 return read(dsts, 0, dsts.length); in read()
DScatteringByteChannel.java123 public long read(ByteBuffer[] dsts, int offset, int length) in read() argument
160 public long read(ByteBuffer[] dsts) throws IOException; in read() argument
DFileChannel.java359 public abstract long read(ByteBuffer[] dsts, int offset, int length) in read() argument
370 public final long read(ByteBuffer[] dsts) throws IOException { in read() argument
371 return read(dsts, 0, dsts.length); in read()
DAsynchronousSocketChannel.java509 public abstract <A> void read(ByteBuffer[] dsts, in read() argument
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
DMySSLContextSpi.java146 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts, in unwrap() argument
/libcore/ojluni/annotations/hiddenapi/sun/nio/ch/
DFileChannelImpl.java78 public long read(java.nio.ByteBuffer[] dsts, int offset, int length) in read() argument