Searched refs:transferTo (Results 1 - 4 of 4) sorted by relevance

/dalvik/libcore/nio/src/main/java/java/nio/channels/
H A DFileChannel.java542 public abstract long transferTo(long position, long count, method in class:FileChannel
/dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
H A DWriteOnlyFileChannel.java56 public long transferTo(long position, long count, WritableByteChannel target) method in class:WriteOnlyFileChannel
H A DFileChannelImpl.java436 public long transferTo(long position, long count, WritableByteChannel target) method in class:FileChannelImpl
/dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
H A DFileChannelTest.java4136 * @tests java.nio.channels.FileChannel#transferTo(long,long,WritableByteChannel)
4141 method = "transferTo",
4147 readOnlyFileChannel.transferTo(0, 10, writableByteChannel);
4154 writeOnlyFileChannel.transferTo(0, 10, writableByteChannel);
4161 readWriteFileChannel.transferTo(0, 10, writableByteChannel);
4170 writeOnlyFileChannel.transferTo(-1, 0, writableByteChannel);
4178 * @tests java.nio.channels.FileChannel#transferTo(long,long,WritableByteChannel)
4183 method = "transferTo",
4190 readOnlyFileChannel.transferTo(0, 10, writableByteChannel);
4198 writeOnlyFileChannel.transferTo(
4694 public long transferTo(long arg0, long arg1, WritableByteChannel arg2) method in class:FileChannelTest.MockFileChannel
[all...]

Completed in 74 milliseconds