Home
last modified time | relevance | path

Searched refs:socketChannel2 (Results 1 – 1 of 1) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
DUnixSelectorTest.java93 SocketChannel socketChannel2 = SocketChannel.open(); in testSelectUnConnectedChannel() local
94 socketChannel2.configureBlocking(false); in testSelectUnConnectedChannel()
96 SelectionKey mkey3 = socketChannel2.register(sel3, SelectionKey.OP_WRITE); in testSelectUnConnectedChannel()
101 assertEquals(false, socketChannel2.isConnected()); in testSelectUnConnectedChannel()
105 SelectionKey mkey4 = socketChannel2.register(sel4, SelectionKey.OP_CONNECT); in testSelectUnConnectedChannel()
111 …SelectionKey mkey5 = socketChannel2.register(sel5, SelectionKey.OP_CONNECT | SelectionKey.OP_WRITE… in testSelectUnConnectedChannel()