/libcore/ojluni/src/main/java/sun/nio/ch/ |
D | SourceChannelImpl.java | 183 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()
|
D | AsynchronousSocketChannelImpl.java | 217 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()
|
D | UnixAsynchronousSocketChannelImpl.java | 497 ByteBuffer[] dsts, in implRead() argument 530 n = (int)IOUtil.read(fd, dsts, nd); in implRead() 541 this.readBuffers = dsts; in implRead()
|
D | SocketChannelImpl.java | 463 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()
|
D | DatagramChannelImpl.java | 604 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()
|
D | FileChannelImpl.java | 208 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/ |
D | SSLEngine.java | 1328 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/ |
D | DatagramChannel.java | 497 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()
|
D | SocketChannel.java | 473 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()
|
D | ScatteringByteChannel.java | 123 public long read(ByteBuffer[] dsts, int offset, int length) in read() argument 160 public long read(ByteBuffer[] dsts) throws IOException; in read() argument
|
D | FileChannel.java | 359 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()
|
D | AsynchronousSocketChannel.java | 509 public abstract <A> void read(ByteBuffer[] dsts, in read() argument
|
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/ |
D | MySSLContextSpi.java | 146 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts, in unwrap() argument
|
/libcore/ojluni/annotations/hiddenapi/sun/nio/ch/ |
D | FileChannelImpl.java | 78 public long read(java.nio.ByteBuffer[] dsts, int offset, int length) in read() argument
|