HomeSort by relevance Sort by last modified time
    Searched refs:intOps (Results 1 - 5 of 5) sorted by null

  /libcore/ojluni/src/main/java/sun/nio/ch/
SinkChannelImpl.java 117 int intOps = sk.nioInterestOps();// Do this just once, it synchronizes
126 newOps = intOps;
132 ((intOps & SelectionKey.OP_WRITE) != 0))
SourceChannelImpl.java 118 int intOps = sk.nioInterestOps(); // Do this just once, it synchronizes
127 newOps = intOps;
133 ((intOps & SelectionKey.OP_READ) != 0))
ServerSocketChannelImpl.java 308 int intOps = sk.nioInterestOps(); // Do this just once, it synchronizes
321 newOps = intOps;
327 ((intOps & SelectionKey.OP_ACCEPT) != 0))
SocketChannelImpl.java     [all...]
DatagramChannelImpl.java 831 int intOps = sk.nioInterestOps(); // Do this just once, it synchronizes
844 newOps = intOps;
850 ((intOps & SelectionKey.OP_READ) != 0))
854 ((intOps & SelectionKey.OP_WRITE) != 0))

Completed in 6488 milliseconds