Home | History | Annotate | Download | only in ch

Lines Matching refs:ops

941      * Translates native poll revent ops into a ready operation ops
943 public boolean translateReadyOps(int ops, int initialOps,
949 if ((ops & Net.POLLNVAL) != 0) {
956 if ((ops & (Net.POLLERR | Net.POLLHUP)) != 0) {
965 if (((ops & Net.POLLIN) != 0) &&
970 if (((ops & Net.POLLCONN) != 0) &&
977 if (((ops & Net.POLLOUT) != 0) &&
986 public boolean translateAndUpdateReadyOps(int ops, SelectionKeyImpl sk) {
987 return translateReadyOps(ops, sk.nioReadyOps(), sk);
990 public boolean translateAndSetReadyOps(int ops, SelectionKeyImpl sk) {
991 return translateReadyOps(ops, 0, sk);
1019 public void translateAndSetInterestOps(int ops, SelectionKeyImpl sk) {
1021 if ((ops & SelectionKey.OP_READ) != 0)
1023 if ((ops & SelectionKey.OP_WRITE) != 0)
1025 if ((ops & SelectionKey.OP_CONNECT) != 0)