HomeSort by relevance Sort by last modified time
    Searched full:readyops (Results 1 - 11 of 11) sorted by null

  /libcore/ojluni/src/main/java/sun/nio/ch/
SelectionKeyImpl.java 48 private int readyOps;
86 public int readyOps() {
88 return readyOps;
95 readyOps = ops;
99 return readyOps;
SelChImpl.java 49 * @return true iff the new value of sk.readyOps() set by this method
59 * @return true iff the new value of sk.readyOps() set by this method
  /libcore/ojluni/src/main/java/java/nio/channels/
SelectionKey.java 212 public abstract int readyOps();
276 * k.readyOps()&nbsp;&amp;&nbsp;OP_READ&nbsp;!=&nbsp;0</pre></blockquote>
282 * <tt>readyOps()</tt>&nbsp;<tt>&</tt>&nbsp;<tt>OP_READ</tt> is
289 return (readyOps() & OP_READ) != 0;
299 * k.readyOps()&nbsp;&amp;&nbsp;OP_WRITE&nbsp;!=&nbsp;0</pre></blockquote>
305 * <tt>readyOps()</tt>&nbsp;<tt>&</tt>&nbsp;<tt>OP_WRITE</tt>
312 return (readyOps() & OP_WRITE) != 0;
323 * k.readyOps()&nbsp;&amp;&nbsp;OP_CONNECT&nbsp;!=&nbsp;0</pre></blockquote>
329 * <tt>readyOps()</tt>&nbsp;<tt>&</tt>&nbsp;<tt>OP_CONNECT</tt>
336 return (readyOps() & OP_CONNECT) != 0
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
SelectionKeyTest.java 85 public int readyOps() {
271 selectionKey.readyOps();
293 * @tests java.nio.channels.SelectionKey#readyOps()
299 assertEquals(0, selectionKey.readyOps());
302 assertEquals(SelectionKey.OP_CONNECT, selectionKey.readyOps());
SelectorTest.java 405 assertEquals(SelectionKey.OP_CONNECT, key.readyOps());
422 assertEquals(SelectionKey.OP_WRITE, key.readyOps());
480 assertEquals(SelectionKey.OP_ACCEPT, key.readyOps());
514 assertEquals(SelectionKey.OP_CONNECT, key.readyOps());
564 assertEquals(SelectionKey.OP_READ, key.readyOps());
626 assertEquals(SelectionKey.OP_WRITE, key.readyOps());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/spi/
AbstractSelectionKeyTest.java 72 public int readyOps() {
  /libcore/luni/src/test/java/libcore/java/nio/channels/
SelectorTest.java 48 assertEquals(SelectionKey.OP_CONNECT, key.readyOps());
66 assertEquals(SelectionKey.OP_CONNECT, key.readyOps());
152 assertEquals(SelectionKey.OP_READ | SelectionKey.OP_WRITE, key.readyOps());
  /external/jetty/src/java/org/eclipse/jetty/io/nio/
SelectChannelEndPoint.java 184 if ((_key.readyOps() & SelectionKey.OP_WRITE) == SelectionKey.OP_WRITE && (_key.interestOps() & SelectionKey.OP_WRITE) == SelectionKey.OP_WRITE)
SelectorManager.java     [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-io/8.1.14.v20131031/
jetty-io-8.1.14.v20131031.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.server_6.1.23.v201004211559.jar 

Completed in 309 milliseconds