Searched defs:dsts (Results 1 - 14 of 14) sorted by relevance

/libcore/ojluni/src/main/java/java/nio/channels/
H A DScatteringByteChannel.java62 * dsts[offset].remaining()
63 * + dsts[offset+1].remaining()
64 * + ... + dsts[offset+length-1].remaining()</pre></blockquote>
70 * Up to the first <tt>dsts[offset].remaining()</tt> bytes of this sequence
71 * are transferred into buffer <tt>dsts[offset]</tt>, up to the next
72 * <tt>dsts[offset+1].remaining()</tt> bytes are transferred into buffer
73 * <tt>dsts[offset+1]</tt>, and so forth, until the entire byte sequence
84 * @param dsts
90 * larger than <tt>dsts.length</tt>
95 * <tt>dsts
123 read(ByteBuffer[] dsts, int offset, int length) argument
160 read(ByteBuffer[] dsts) argument
[all...]
H A DAsynchronousSocketChannel.java448 * dsts[offset].remaining()
449 * + dsts[offset+1].remaining()
450 * + ... + dsts[offset+length-1].remaining()</pre></blockquote>
456 * Up to the first <tt>dsts[offset].remaining()</tt> bytes of this sequence
457 * are transferred into buffer <tt>dsts[offset]</tt>, up to the next
458 * <tt>dsts[offset+1].remaining()</tt> bytes are transferred into buffer
459 * <tt>dsts[offset+1]</tt>, and so forth, until the entire byte sequence
479 * @param dsts
484 * {@code dsts.length}
487 * and no larger than {@code dsts
509 read(ByteBuffer[] dsts, int offset, int length, long timeout, TimeUnit unit, A attachment, CompletionHandler<Long,? super A> handler) argument
[all...]
H A DDatagramChannel.java497 public abstract long read(ByteBuffer[] dsts, int offset, int length) argument
513 public final long read(ByteBuffer[] dsts) throws IOException { argument
514 return read(dsts, 0, dsts.length);
H A DFileChannel.java359 public abstract long read(ByteBuffer[] dsts, int offset, int length) argument
370 public final long read(ByteBuffer[] dsts) throws IOException { argument
371 return read(dsts, 0, dsts.length);
H A DSocketChannel.java473 public abstract long read(ByteBuffer[] dsts, int offset, int length) argument
480 public final long read(ByteBuffer[] dsts) throws IOException { argument
481 return read(dsts, 0, dsts.length);
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DSourceChannelImpl.java182 public long read(ByteBuffer[] dsts, int offset, int length) argument
185 if ((offset < 0) || (length < 0) || (offset > dsts.length - length))
187 return read(Util.subsequence(dsts, offset, length));
190 public long read(ByteBuffer[] dsts) throws IOException { argument
191 if (dsts == null)
202 n = IOUtil.read(fd, dsts, nd);
H A DAsynchronousSocketChannelImpl.java217 ByteBuffer[] dsts,
226 ByteBuffer[] dsts,
276 return implRead(isScatteringRead, dst, dsts, timeout, unit, att, handler);
301 public final <A> void read(ByteBuffer[] dsts, argument
311 if ((offset < 0) || (length < 0) || (offset > dsts.length - length))
313 ByteBuffer[] bufs = Util.subsequence(dsts, offset, length);
215 implRead(boolean isScatteringRead, ByteBuffer dst, ByteBuffer[] dsts, long timeout, TimeUnit unit, A attachment, CompletionHandler<V,? super A> handler) argument
224 read(boolean isScatteringRead, ByteBuffer dst, ByteBuffer[] dsts, long timeout, TimeUnit unit, A att, CompletionHandler<V,? super A> handler) argument
H A DSocketChannelImpl.java461 public long read(ByteBuffer[] dsts, int offset, int length) argument
464 if ((offset < 0) || (length < 0) || (offset > dsts.length - length))
479 n = IOUtil.read(fd, dsts, offset, length, nd);
H A DUnixAsynchronousSocketChannelImpl.java502 ByteBuffer[] dsts,
535 n = (int)IOUtil.read(fd, dsts, nd);
546 this.readBuffers = dsts;
500 implRead(boolean isScatteringRead, ByteBuffer dst, ByteBuffer[] dsts, long timeout, TimeUnit unit, A attachment, CompletionHandler<V,? super A> handler) argument
H A DDatagramChannelImpl.java608 public long read(ByteBuffer[] dsts, int offset, int length) argument
611 if ((offset < 0) || (length < 0) || (offset > dsts.length - length))
626 n = IOUtil.read(fd, dsts, offset, length, nd);
H A DFileChannelImpl.java198 public long read(ByteBuffer[] dsts, int offset, int length) argument
201 if ((offset < 0) || (length < 0) || (offset > dsts.length - length))
215 n = IOUtil.read(fd, dsts, offset, length, nd);
/libcore/ojluni/src/main/java/javax/net/ssl/
H A DSSLEngine.java1280 * engine.unwrap(src, dsts, 0, dsts.length);}
1285 * @param dsts
1298 * if either <code>src</code> or <code>dsts</code>
1299 * is null, or if any element in <code>dsts</code> is null.
1305 ByteBuffer [] dsts) throws SSLException {
1306 if (dsts == null) {
1307 throw new IllegalArgumentException("dsts == null");
1309 return unwrap(src, dsts, 0, dsts
1304 unwrap(ByteBuffer src, ByteBuffer [] dsts) argument
1392 unwrap(ByteBuffer src, ByteBuffer [] dsts, int offset, int length) argument
[all...]
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DMySSLContextSpi.java148 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts, argument
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
H A DMySSLContextSpi.java146 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts, argument

Completed in 297 milliseconds