Searched refs:ssc (Results 1 - 6 of 6) sorted by relevance

/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/spi/
H A DAbstractSelectorTest.java115 ServerSocketChannel ssc = ServerSocketChannel.open();
116 ssc.configureBlocking(false);
118 assertFalse(ssc.isRegistered());
119 SelectionKey acceptKey = ssc.register(acceptSelector,
121 assertTrue(ssc.isRegistered());
131 ServerSocketChannel ssc = ServerSocketChannel.open();
132 ssc.configureBlocking(false);
137 ssc.register(acceptSelector, SelectionKey.OP_ACCEPT);
142 assertFalse(ssc.isRegistered());
145 ssc
[all...]
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
H A DSelectorTest.java52 ServerSocketChannel ssc; field in class:SelectorTest
60 ssc = ServerSocketChannel.open();
61 ssc.configureBlocking(false);
62 ServerSocket ss = ssc.socket();
70 ssc.close();
111 SelectionKey key = ssc.register(selector, SelectionKey.OP_ACCEPT);
158 ssc.register(selector, SelectionKey.OP_ACCEPT);
169 assertEquals(ssc.keyFor(selector), selectedKeys.iterator().next());
172 selectedKeys.add(ssc.keyFor(selector));
184 ssc
[all...]
H A DSinkChannelTest.java465 ServerSocketChannel ssc = ServerSocketChannel.open();
466 ssc.socket().bind(new InetSocketAddress(InetAddress.getLocalHost(),49999));
476 SocketChannel sock = ssc.accept();
477 ssc.close();
489 ServerSocketChannel ssc = ServerSocketChannel.open();
490 ssc.socket().bind(new InetSocketAddress(InetAddress.getLocalHost(),49999));
493 SocketChannel sock = ssc.accept();
500 ssc.close();
H A DSocketChannelTest.java2736 ServerSocketChannel ssc = ServerSocketChannel.open();
2737 ssc.socket().bind(localAddr2);
2740 SocketChannel sock = ssc.accept();
2753 ssc.close();
2762 ServerSocketChannel ssc = ServerSocketChannel.open();
2763 ssc.configureBlocking(false);
2764 ssc.socket().bind(null);
2767 boolean connected = sc.connect(ssc.socket().getLocalSocketAddress());
2768 SocketChannel sock = ssc.accept();
2785 ssc
[all...]
H A DChannelsTest.java595 ServerSocketChannel ssc = ServerSocketChannel.open();
596 ssc.socket().bind(localAddr);
603 ssc.accept().close();
604 ssc.close();
/external/v8/src/
H A Dregexp-macro-assembler.h167 void set_slow_safe(bool ssc) { slow_safe_compiler_ = ssc; } argument

Completed in 104 milliseconds