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

/openjdk7/jdk/src/share/classes/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.java435 * dsts[offset].remaining()
436 * + dsts[offset+1].remaining()
437 * + ... + dsts[offset+length-1].remaining()</pre></blockquote>
443 * Up to the first <tt>dsts[offset].remaining()</tt> bytes of this sequence
444 * are transferred into buffer <tt>dsts[offset]</tt>, up to the next
445 * <tt>dsts[offset+1].remaining()</tt> bytes are transferred into buffer
446 * <tt>dsts[offset+1]</tt>, and so forth, until the entire byte sequence
464 * @param dsts
469 * {@code dsts.length}
472 * and no larger than {@code dsts
494 read(ByteBuffer[] dsts, int offset, int length, long timeout, TimeUnit unit, A attachment, CompletionHandler<Long,? super A> handler) argument
[all...]
H A DDatagramChannel.java494 public abstract long read(ByteBuffer[] dsts, int offset, int length) argument
510 public final long read(ByteBuffer[] dsts) throws IOException { argument
511 return read(dsts, 0, dsts.length);
H A DFileChannel.java358 public abstract long read(ByteBuffer[] dsts, int offset, int length) argument
369 public final long read(ByteBuffer[] dsts) throws IOException { argument
370 return read(dsts, 0, dsts.length);
H A DSocketChannel.java464 public abstract long read(ByteBuffer[] dsts, int offset, int length) argument
471 public final long read(ByteBuffer[] dsts) throws IOException { argument
472 return read(dsts, 0, dsts.length);
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DSourceChannelImpl.java121 public long read(ByteBuffer[] dsts, int offset, int length) argument
124 if ((offset < 0) || (length < 0) || (offset > dsts.length - length))
127 return read(Util.subsequence(dsts, offset, length));
134 public long read(ByteBuffer[] dsts) throws IOException { argument
136 return sc.read(dsts);
H A DWindowsAsynchronousSocketChannelImpl.java604 ByteBuffer[] dsts,
615 bufs = dsts;
602 implRead(boolean isScatteringRead, ByteBuffer dst, ByteBuffer[] dsts, long timeout, TimeUnit unit, A attachment, CompletionHandler<V,? super A> handler) argument
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DSourceChannelImpl.java179 public long read(ByteBuffer[] dsts, int offset, int length) argument
182 if ((offset < 0) || (length < 0) || (offset > dsts.length - length))
184 return read(Util.subsequence(dsts, offset, length));
187 public long read(ByteBuffer[] dsts) throws IOException { argument
188 if (dsts == null)
199 n = IOUtil.read(fd, dsts, nd);
H A DUnixAsynchronousSocketChannelImpl.java473 ByteBuffer[] dsts,
506 n = (int)IOUtil.read(fd, dsts, nd);
517 this.readBuffers = dsts;
471 implRead(boolean isScatteringRead, ByteBuffer dst, ByteBuffer[] dsts, long timeout, TimeUnit unit, A attachment, CompletionHandler<V,? super A> handler) argument
/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DSSLEngine.java635 * engine.unwrap(src, dsts, 0, dsts.length);}
640 * @param dsts
653 * if either <code>src</code> or <code>dsts</code>
654 * is null, or if any element in <code>dsts</code> is null.
660 ByteBuffer [] dsts) throws SSLException {
661 if (dsts == null) {
662 throw new IllegalArgumentException("dsts == null");
664 return unwrap(src, dsts, 0, dsts
659 unwrap(ByteBuffer src, ByteBuffer [] dsts) argument
747 unwrap(ByteBuffer src, ByteBuffer [] dsts, int offset, int length) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DAsynchronousSocketChannelImpl.java216 ByteBuffer[] dsts,
225 ByteBuffer[] dsts,
275 return implRead(isScatteringRead, dst, dsts, timeout, unit, att, handler);
300 public final <A> void read(ByteBuffer[] dsts, argument
310 if ((offset < 0) || (length < 0) || (offset > dsts.length - length))
312 ByteBuffer[] bufs = Util.subsequence(dsts, offset, length);
214 implRead(boolean isScatteringRead, ByteBuffer dst, ByteBuffer[] dsts, long timeout, TimeUnit unit, A attachment, CompletionHandler<V,? super A> handler) argument
223 read(boolean isScatteringRead, ByteBuffer dst, ByteBuffer[] dsts, long timeout, TimeUnit unit, A att, CompletionHandler<V,? super A> handler) argument
H A DSocketChannelImpl.java427 public long read(ByteBuffer[] dsts, int offset, int length) argument
430 if ((offset < 0) || (length < 0) || (offset > dsts.length - length))
449 n = IOUtil.read(fd, dsts, offset, length, nd);
H A DDatagramChannelImpl.java571 public long read(ByteBuffer[] dsts, int offset, int length) argument
574 if ((offset < 0) || (length < 0) || (offset > dsts.length - length))
589 n = IOUtil.read(fd, dsts, offset, length, nd);
H A DFileChannelImpl.java161 public long read(ByteBuffer[] dsts, int offset, int length) argument
164 if ((offset < 0) || (length < 0) || (offset > dsts.length - length))
179 n = IOUtil.read(fd, dsts, offset, length, nd);

Completed in 352 milliseconds