Searched refs:transferTo (Results 1 – 4 of 4) sorted by relevance
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/ |
D | FileChannelTest.java | 2609 readOnlyFileChannel.transferTo(0, 10, writableByteChannel); in test_transferToJJLWritableByteChannel_Null() 2615 writeOnlyFileChannel.transferTo(0, 10, writableByteChannel); in test_transferToJJLWritableByteChannel_Null() 2622 readWriteFileChannel.transferTo(0, 10, writableByteChannel); in test_transferToJJLWritableByteChannel_Null() 2629 writeOnlyFileChannel.transferTo(-1, 0, writableByteChannel); in test_transferToJJLWritableByteChannel_Null() 2643 readOnlyFileChannel.transferTo(0, 10, writableByteChannel); in test_transferToJJLWritableByteChannel_Closed() 2651 writeOnlyFileChannel.transferTo(0, 10, writableByteChannel); in test_transferToJJLWritableByteChannel_Closed() 2659 readWriteFileChannel.transferTo(0, 10, writableByteChannel); in test_transferToJJLWritableByteChannel_Closed() 2667 readWriteFileChannel.transferTo(0, -1, writableByteChannel); in test_transferToJJLWritableByteChannel_Closed() 2679 readOnlyFileChannel.transferTo(0, 10, writableByteChannel); in test_transferToJJLWritableByteChannel_SourceClosed() 2685 writeOnlyFileChannel.transferTo(0, 10, writableByteChannel); in test_transferToJJLWritableByteChannel_SourceClosed() [all …]
|
/libcore/luni/src/main/java/java/nio/channels/ |
D | FileChannel.java | 537 public abstract long transferTo(long position, long count, in transferTo() method in FileChannel
|
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
D | OldFileChannelTest.java | 1057 readOnlyFileChannel.transferTo(10, -1, writableByteChannel); in test_transferToJJLWritableByteChannel_IllegalArgument() 1064 readWriteFileChannel.transferTo(-1, 10, writableByteChannel); in test_transferToJJLWritableByteChannel_IllegalArgument()
|
/libcore/luni/src/main/java/java/nio/ |
D | FileChannelImpl.java | 403 … public long transferTo(long position, long count, WritableByteChannel target) throws IOException { in transferTo() method in FileChannelImpl
|