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

/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
H A DFileChannelTest.java2604 * @tests java.nio.channels.FileChannel#transferTo(long,long,WritableByteChannel)
2609 readOnlyFileChannel.transferTo(0, 10, writableByteChannel);
2615 writeOnlyFileChannel.transferTo(0, 10, writableByteChannel);
2622 readWriteFileChannel.transferTo(0, 10, writableByteChannel);
2629 writeOnlyFileChannel.transferTo(-1, 0, writableByteChannel);
2637 * @tests java.nio.channels.FileChannel#transferTo(long,long,WritableByteChannel)
2643 readOnlyFileChannel.transferTo(0, 10, writableByteChannel);
2651 writeOnlyFileChannel.transferTo(0, 10, writableByteChannel);
2659 readWriteFileChannel.transferTo(0, 10, writableByteChannel);
2667 readWriteFileChannel.transferTo(
3080 public long transferTo(long arg0, long arg1, WritableByteChannel arg2) method in class:FileChannelTest.MockFileChannel
[all...]

Completed in 219 milliseconds