/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/ |
SelectionKeyTest.java | 98 MockSelectionKey mockSelectionKey = new MockSelectionKey(SelectionKey.OP_ACCEPT); 116 MockSelectionKey mockSelectionKey = new MockSelectionKey(SelectionKey.OP_ACCEPT); 148 selectionKey.interestOps(SelectionKey.OP_ACCEPT); 204 MockSelectionKey mockSelectionKey1 = new MockSelectionKey(SelectionKey.OP_ACCEPT); 216 MockSelectionKey mockSelectionKey2 = new MockSelectionKey(SelectionKey.OP_ACCEPT); 226 MockSelectionKey mockSelectionKey2 = new MockSelectionKey(SelectionKey.OP_ACCEPT); 236 MockSelectionKey mockSelectionKey2 = new MockSelectionKey(SelectionKey.OP_ACCEPT);
|
UnixSelectorTest.java | 65 SelectionKey mkey0 = server.serverChannel.register(sel0, SelectionKey.OP_ACCEPT); 66 server.serverChannel.register(sel1, SelectionKey.OP_ACCEPT);
|
SelectableChannelTest.java | 40 msc.register(Selector.open(), SelectionKey.OP_ACCEPT);
|
SelectorTest.java | 105 SelectionKey key = ssc.register(selector, SelectionKey.OP_ACCEPT); 152 ssc.register(selector, SelectionKey.OP_ACCEPT); 333 SelectionKey key1 = ssc.register(selector, SelectionKey.OP_ACCEPT); 472 ssc.register(selector, SelectionKey.OP_ACCEPT); 480 assertEquals(SelectionKey.OP_ACCEPT, key.readyOps());
|
ServerSocketChannelTest.java | 89 assertEquals(SelectionKey.OP_ACCEPT, this.serverChannel.validOps()); 90 assertEquals(SelectionKey.OP_ACCEPT, testMSChnl.validOps()); 91 assertEquals(SelectionKey.OP_ACCEPT, testMSChnlnull.validOps()); 102 assertEquals(SelectionKey.OP_ACCEPT, testMSChnlnotnull.validOps()); 325 assertEquals(SelectionKey.OP_ACCEPT, this.serverChannel.validOps());
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/spi/ |
AbstractSelectorTest.java | 121 SelectionKey.OP_ACCEPT); 138 ssc.register(acceptSelector, SelectionKey.OP_ACCEPT); 148 ssc.register(acceptSelector, SelectionKey.OP_ACCEPT); 156 SelectionKey.OP_ACCEPT);
|
AbstractSelectableChannelTest.java | 309 return SelectionKey.OP_ACCEPT;
|
/libcore/ojluni/src/main/java/java/nio/channels/ |
SelectionKey.java | 260 * <tt>OP_ACCEPT</tt> at the start of a <a 264 * <tt>OP_ACCEPT</tt> to the key's ready set and add the key to its 267 public static final int OP_ACCEPT = 1 << 4; 347 * k.readyOps() & OP_ACCEPT != 0</pre></blockquote> 353 * <tt>readyOps()</tt> <tt>&</tt> <tt>OP_ACCEPT</tt> 360 return (readyOps() & OP_ACCEPT) != 0;
|
ServerSocketChannel.java | 113 * connections, so this method returns {@link SelectionKey#OP_ACCEPT}. 119 return SelectionKey.OP_ACCEPT;
|
/libcore/ojluni/src/main/java/sun/nio/ch/ |
ServerSocketChannelImpl.java | 327 ((intOps & SelectionKey.OP_ACCEPT) != 0)) 328 newOps |= SelectionKey.OP_ACCEPT; 349 if ((ops & SelectionKey.OP_ACCEPT) != 0)
|
ServerSocketAdaptor.java | 115 sk = ssc.register(sel, SelectionKey.OP_ACCEPT);
|
/external/pcre/dist/ |
HACKING | 199 OP_ACCEPT ) These are Perl 5.10's "backtracking control 200 OP_COMMIT ) verbs". If OP_ACCEPT is inside capturing
|
pcre_study.c | 147 case OP_ACCEPT: 853 case OP_ACCEPT: [all...] |
pcre_internal.h | [all...] |
pcre_compile.c | 257 { 6, OP_ACCEPT, -1 }, [all...] |
pcre_exec.c | [all...] |
pcre_jit_compile.c | 671 case OP_ACCEPT: [all...] |