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

/dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
H A DSelectionKeyTest.java55 SocketChannel sc; field in class:SelectionKeyTest
64 sc = SocketChannel.open();
65 sc.configureBlocking(false);
66 selectionKey = sc.register(selector, SelectionKey.OP_CONNECT);
164 assertSame(sc, selectionKey.channel());
167 assertSame(sc, selectionKey.channel());
204 selectionKey.interestOps(~sc.validOps());
262 sc.close();
430 sc.connect(new InetSocketAddress(LOCAL_ADDR, port));

Completed in 77 milliseconds