Searched refs:writeBuffers (Results 1 – 3 of 3) sorted by relevance
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
D | OldFileChannelTest.java | 783 ByteBuffer[] writeBuffers = new ByteBuffer[2]; in test_write$LByteBuffer_Closed() local 784 writeBuffers[0] = ByteBuffer.allocate(CAPACITY); in test_write$LByteBuffer_Closed() 785 writeBuffers[1] = ByteBuffer.allocate(CAPACITY); in test_write$LByteBuffer_Closed() 789 readOnlyFileChannel.write(writeBuffers); in test_write$LByteBuffer_Closed() 797 writeOnlyFileChannel.write(writeBuffers); in test_write$LByteBuffer_Closed() 805 readWriteFileChannel.write(writeBuffers); in test_write$LByteBuffer_Closed() 813 ByteBuffer[] writeBuffers = new ByteBuffer[2]; in test_write$LByteBuffer_ReadOnly() local 814 writeBuffers[0] = ByteBuffer.allocate(CAPACITY); in test_write$LByteBuffer_ReadOnly() 815 writeBuffers[1] = ByteBuffer.allocate(CAPACITY); in test_write$LByteBuffer_ReadOnly() 818 readOnlyFileChannel.write(writeBuffers); in test_write$LByteBuffer_ReadOnly() [all …]
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/ |
D | FileChannelTest.java | 2233 ByteBuffer[] writeBuffers = new ByteBuffer[2]; in test_write$LByteBuffer() local 2235 mockFileChannel.write(writeBuffers); in test_write$LByteBuffer() 2245 ByteBuffer[] writeBuffers = null; in test_write$LByteBufferII_Null() local 2248 readOnlyFileChannel.write(writeBuffers, 1, 2); in test_write$LByteBufferII_Null() 2255 writeOnlyFileChannel.write(writeBuffers, 1, 2); in test_write$LByteBufferII_Null() 2262 readWriteFileChannel.write(writeBuffers, 1, 2); in test_write$LByteBufferII_Null() 2271 readWriteFileChannel.write(writeBuffers, 0, 0); in test_write$LByteBufferII_Null() 2282 ByteBuffer[] writeBuffers = new ByteBuffer[2]; in test_write$LByteBufferII_Closed() local 2283 writeBuffers[0] = ByteBuffer.allocate(CAPACITY); in test_write$LByteBufferII_Closed() 2284 writeBuffers[1] = ByteBuffer.allocate(CAPACITY); in test_write$LByteBufferII_Closed() [all …]
|
/libcore/ojluni/src/main/java/sun/nio/ch/ |
D | UnixAsynchronousSocketChannelImpl.java | 89 private ByteBuffer[] writeBuffers; field in UnixAsynchronousSocketChannelImpl 604 n = (int)IOUtil.write(fd, writeBuffers, nd); in finishWrite() 618 this.writeBuffers = null; in finishWrite() 724 this.writeBuffers = srcs; in implWrite()
|