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

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
SelectionKeyTest.java 59 private int interestOps;
62 interestOps = ops;
73 public int interestOps() {
77 public SelectionKey interestOps(int operations) {
86 return interestOps;
134 * @tests java.nio.channels.SelectionKey#interestOps()
137 assertEquals(SelectionKey.OP_CONNECT, selectionKey.interestOps());
141 * @tests java.nio.channels.SelectionKey#interestOps(int)
144 selectionKey.interestOps(SelectionKey.OP_WRITE);
145 assertEquals(SelectionKey.OP_WRITE, selectionKey.interestOps());
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
SelectionKeyImpl.java 47 private volatile int interestOps;
76 public int interestOps() {
78 return interestOps;
81 public SelectionKey interestOps(int ops) {
106 interestOps = ops;
111 return interestOps;
SelChImpl.java 46 * Adds the specified ops if present in interestOps. The specified
56 * Sets the specified ops if present in interestOps. The specified
SelectorImpl.java 135 k.interestOps(ops);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/spi/
AbstractSelectionKeyTest.java 64 public int interestOps() {
68 public SelectionKey interestOps(int arg0) {
  /external/jetty/src/java/org/eclipse/jetty/io/nio/
SelectChannelEndPoint.java 56 /** The desired value for {@link SelectionKey#interestOps()} */
177 _key.interestOps(0);
184 if ((_key.readyOps() & SelectionKey.OP_WRITE) == SelectionKey.OP_WRITE && (_key.interestOps() & SelectionKey.OP_WRITE) == SelectionKey.OP_WRITE)
187 _interestOps = _key.interestOps() & ~SelectionKey.OP_WRITE;
188 _key.interestOps(_interestOps);
194 _key.interestOps(0);
201 _key.interestOps(0);
593 current_ops = ((_key!=null && _key.isValid())?_key.interestOps():-1);
614 * Synchronize the interestOps with the actual key. Call is scheduled by a call to updateKey
656 _key.interestOps(_interestOps)
    [all...]
SelectorManager.java 638 key.interestOps(SelectionKey.OP_READ);
763 if (!k.isValid() || k.interestOps()==0)
    [all...]
  /libcore/ojluni/src/main/java/java/nio/channels/
SelectionKey.java 57 * #interestOps(int)} method. </p></li>
179 public abstract int interestOps();
199 public abstract SelectionKey interestOps(int ops);
SelectableChannel.java 160 * the {@link SelectionKey#interestOps(int) interestOps(int)} method. If
  /libcore/ojluni/src/main/java/java/nio/channels/spi/
AbstractSelectableChannel.java 201 k.interestOps(ops);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-io/8.1.14.v20131031/
jetty-io-8.1.14.v20131031.jar 
  /external/jetty/
VERSION.txt     [all...]

Completed in 1330 milliseconds