Home
last modified time | relevance | path

Searched refs:srcs (Results 1 – 25 of 26) sorted by relevance

12

/libcore/ojluni/src/main/java/sun/nio/ch/
DSinkChannelImpl.java178 public long write(ByteBuffer[] srcs) throws IOException { in write() argument
179 if (srcs == null) in write()
190 n = IOUtil.write(fd, srcs, nd); in write()
201 public long write(ByteBuffer[] srcs, int offset, int length) in write() argument
204 if ((offset < 0) || (length < 0) || (offset > srcs.length - length)) in write()
206 return write(Util.subsequence(srcs, offset, length)); in write()
DAsynchronousSocketChannelImpl.java326 ByteBuffer[] srcs, in implWrite() argument
335 ByteBuffer[] srcs, in write() argument
382 return implWrite(isGatheringWrite, src, srcs, timeout, unit, att, handler); in write()
403 public final <A> void write(ByteBuffer[] srcs, in write() argument
413 if ((offset < 0) || (length < 0) || (offset > srcs.length - length)) in write()
415 srcs = Util.subsequence(srcs, offset, length); in write()
416 write(true, null, srcs, timeout, unit, attachment, handler); in write()
DUnixAsynchronousSocketChannelImpl.java692 ByteBuffer[] srcs, in implWrite() argument
713 n = (int)IOUtil.write(fd, srcs, nd); in implWrite()
724 this.writeBuffers = srcs; in implWrite()
DSocketChannelImpl.java529 public long write(ByteBuffer[] srcs, int offset, int length) in write() argument
532 if ((offset < 0) || (length < 0) || (offset > srcs.length - length)) in write()
545 n = IOUtil.write(fd, srcs, offset, length, nd); in write()
DFileChannelImpl.java260 public long write(ByteBuffer[] srcs, int offset, int length) in write() argument
263 if ((offset < 0) || (length < 0) || (offset > srcs.length - length)) in write()
277 n = IOUtil.write(fd, srcs, offset, length, nd); in write()
DDatagramChannelImpl.java648 public long write(ByteBuffer[] srcs, int offset, int length) in write() argument
651 if ((offset < 0) || (length < 0) || (offset > srcs.length - length)) in write()
666 n = IOUtil.write(fd, srcs, offset, length, nd); in write()
/libcore/ojluni/src/main/java/java/nio/channels/
DDatagramChannel.java547 public abstract long write(ByteBuffer[] srcs, int offset, int length) in write() argument
567 public final long write(ByteBuffer[] srcs) throws IOException { in write() argument
568 return write(srcs, 0, srcs.length); in write()
DSocketChannel.java494 public abstract long write(ByteBuffer[] srcs, int offset, int length) in write() argument
501 public final long write(ByteBuffer[] srcs) throws IOException { in write() argument
502 return write(srcs, 0, srcs.length); in write()
DGatheringByteChannel.java127 public long write(ByteBuffer[] srcs, int offset, int length) in write() argument
164 public long write(ByteBuffer[] srcs) throws IOException; in write() argument
DFileChannel.java399 public abstract long write(ByteBuffer[] srcs, int offset, int length) in write() argument
413 public final long write(ByteBuffer[] srcs) throws IOException { in write() argument
414 return write(srcs, 0, srcs.length); in write()
DAsynchronousSocketChannel.java660 public abstract <A> void write(ByteBuffer[] srcs, in write() argument
/libcore/ojluni/src/main/java/javax/net/ssl/
DSSLEngine.java1172 public SSLEngineResult wrap(ByteBuffer [] srcs, in wrap() argument
1174 if (srcs == null) { in wrap()
1177 return wrap(srcs, 0, srcs.length, dst); in wrap()
1256 public abstract SSLEngineResult wrap(ByteBuffer [] srcs, int offset, in wrap() argument
/libcore/
DJavaLibrary.bp56 srcs: [":openjdk_java_files"],
63 srcs: [":openjdk_javadoc_files"],
69 srcs: [
79 srcs: [
90 srcs: [
107 srcs: [
154 srcs: [
163 srcs: ["luni/src/module/java/module-info.java"],
196 srcs: [":core_oj_java_files"],
236 srcs: [":core_libart_java_files"],
[all …]
DNativeCode.bp54 srcs: [
91 srcs: [
106 srcs: [":libopenjdk_native_srcs"],
178 srcs: [
207 srcs: ["luni/src/test/native/libcore_io_Memory_test.cpp"],
217 srcs: ["luni/src/benchmark/native/libcore_io_Memory_bench.cpp"],
Dnon_openjdk_java_files.bp3 srcs: [
296 srcs: [
373 srcs: [
/libcore/luni/src/main/native/
DAndroid.bp3 srcs: [
34 srcs: [
/libcore/tools/upstream/
DAndroid.bp21 srcs: ["src/main/java/**/*.java"],
29 srcs: ["src/main/java/**/*.java"],
/libcore/mmodules/intracoreapi/
DAndroid.bp23 srcs: [":core_api_files"],
52 srcs: [":core-intra-stubs"],
74 srcs: [
/libcore/metrictests/memory/apps/
DAndroid.bp19 srcs: ["src/**/*.java"],
/libcore/mmodules/core_platform_api/
DAndroid.bp23 srcs: [":core_api_files"],
56 srcs: [":core-platform-api-stubs"],
/libcore/metrictests/memory/host/
DAndroid.bp17 srcs: ["src/**/*.java"],
/libcore/ojluni/src/main/native/
DAndroid.bp3 srcs: [
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
DMySSLContextSpi.java150 public SSLEngineResult wrap(ByteBuffer[] srcs, int offset, in wrap() argument
/libcore/ojluni/annotations/hiddenapi/sun/nio/ch/
DFileChannelImpl.java87 public long write(java.nio.ByteBuffer[] srcs, int offset, int length) in write() argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
DFileChannelTest.java3159 public long read(ByteBuffer[] srcs, int offset, int length) in read() argument
3163 if (0 == offset && length == srcs.length) { in read()
3205 public long write(ByteBuffer[] srcs, int offset, int length) in write() argument
3209 if(0 == offset && length == srcs.length){ in write()

12