HomeSort by relevance Sort by last modified time
    Searched refs:OP_ACCEPT (Results 1 - 25 of 42) sorted by null

1 2

  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
N1.java 60 d.register(ssc, SelectionKey.OP_ACCEPT,
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
N1.java 60 d.register(ssc, 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
354 * {@code readyOps() & OP_ACCEPT} is nonzero
360 return (readyOps() & OP_ACCEPT) != 0;
ServerSocketChannel.java 116 * connections, so this method returns {@link SelectionKey#OP_ACCEPT}.
122 return SelectionKey.OP_ACCEPT;
  /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/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);
SelectableChannelTest.java 40 msc.register(Selector.open(), SelectionKey.OP_ACCEPT);
UnixSelectorTest.java 65 SelectionKey mkey0 = server.serverChannel.register(sel0, SelectionKey.OP_ACCEPT);
66 server.serverChannel.register(sel1, 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/ojluni/src/main/java/sun/nio/ch/
ServerSocketChannelImpl.java 335 ((intOps & SelectionKey.OP_ACCEPT) != 0))
336 newOps |= SelectionKey.OP_ACCEPT;
379 if ((ops & SelectionKey.OP_ACCEPT) != 0)
  /external/pcre/dist2/src/
pcre2_study.c 199 case OP_ACCEPT:
909 case OP_ACCEPT:
    [all...]
pcre2_compile.c 402 { 6, OP_ACCEPT, -1 },
    [all...]
pcre2_match.c     [all...]
pcre2_jit_compile.c 703 case OP_ACCEPT:
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
SSLConscryptPlainTextExposureTest.java 609 serverSocketChannel.register(selector, SelectionKey.OP_ACCEPT);
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-r1.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.4_r1-robolectric-r2.jar 
android-all-5.0.2_r3-robolectric-r0.jar 
android-all-5.1.1_r9-robolectric-r2.jar 
android-all-6.0.1_r3-robolectric-r1.jar 
  /prebuilts/sdk/10/
android.jar 

Completed in 202 milliseconds

1 2