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

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
UnixSelectorTest.java 79 socketChannel.register(sel2, SelectionKey.OP_WRITE);
96 SelectionKey mkey3 = socketChannel2.register(sel3, SelectionKey.OP_WRITE);
111 SelectionKey mkey5 = socketChannel2.register(sel5, SelectionKey.OP_CONNECT | SelectionKey.OP_WRITE);
SelectionKeyTest.java 144 selectionKey.interestOps(SelectionKey.OP_WRITE);
145 assertEquals(SelectionKey.OP_WRITE, selectionKey.interestOps());
234 MockSelectionKey mockSelectionKey1 = new MockSelectionKey(SelectionKey.OP_WRITE);
SelectorTest.java 414 SelectionKey key1 = sc.register(selector, SelectionKey.OP_WRITE);
422 assertEquals(SelectionKey.OP_WRITE, key.readyOps());
619 sc.register(selector, SelectionKey.OP_WRITE);
626 assertEquals(SelectionKey.OP_WRITE, key.readyOps());
SinkChannelTest.java 64 assertEquals(SelectionKey.OP_WRITE, sink.validOps());
  /libcore/luni/src/main/java/java/nio/channels/
SelectionKey.java 26 * reading ({@code OP_READ}) and writing ({@code OP_WRITE}).
54 public static final int OP_WRITE = 4;
191 * {@code (readyOps() & OP_WRITE) == OP_WRITE}.
199 return (readyOps() & OP_WRITE) == OP_WRITE;
Pipe.java 48 * @return a static value of OP_WRITE.
52 return SelectionKey.OP_WRITE;
DatagramChannel.java 75 * <code>SelectionKey.OP_READ</code> | <code>SelectionKey.OP_WRITE</code> ).
82 return (SelectionKey.OP_READ | SelectionKey.OP_WRITE);
SocketChannel.java 126 * {@code SelectionKey.OP_CONNECT | SelectionKey.OP_READ | SelectionKey.OP_WRITE}.
133 return (SelectionKey.OP_CONNECT | SelectionKey.OP_READ | SelectionKey.OP_WRITE);
  /external/google-breakpad/src/third_party/libdisasm/
x86_operand_list.c 107 if (! (list->op.access & op_write) ) {
118 (list->op.access & op_write ) ) {
123 if (! (list->op.access & op_write) ||
134 if (! (list->op.access & op_write) ||
libdis.h 208 op_write = 2, enumerator in enum:x86_op_access
    [all...]
  /system/core/toolbox/upstream-netbsd/bin/dd/
dd_hostops.c 52 .op_write = write,
dd.h 60 ssize_t (*op_write)(int, const void *, size_t); member in struct:ddfops
71 #define ddop_write(dir, a1, a2, a3) dir.ops->op_write(a1, a2, a3)
dd.c 104 .op_write = write,
593 rv = io->ops->op_write(io->fd, buf, len);
  /libcore/luni/src/test/java/libcore/java/nio/channels/
SelectorTest.java 148 SelectionKey.OP_CONNECT | SelectionKey.OP_READ | SelectionKey.OP_WRITE);
150 assertEquals(SelectionKey.OP_READ | SelectionKey.OP_WRITE, key.readyOps());
OldSocketChannelTest.java 174 SelectionKey.OP_WRITE), this.channel1.validOps());
  /libcore/luni/src/main/java/java/nio/
SelectorImpl.java 48 import static java.nio.channels.SelectionKey.OP_WRITE;
216 if (((OP_CONNECT | OP_WRITE) & interestOps) != 0) {
270 selectedOps |= ops & OP_WRITE;
  /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)
187 _interestOps = _key.interestOps() & ~SelectionKey.OP_WRITE;
590 | ((!_socket.isOutputShutdown()&& write_interest) ? SelectionKey.OP_WRITE : 0);
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/tcp/
SelectorKernel.java 283 // or OP_WRITE. So while we are writing a buffer, we
295 e.getValue().interestOps(SelectionKey.OP_WRITE);
  /external/google-breakpad/src/third_party/libdisasm/swig/
libdisasm_oop.i 126 op_write = 2,
  /external/linux-tools-perf/src/tools/perf/util/
evsel.c 394 #define CACHE_WRITE (1 << C(OP_WRITE))
    [all...]

Completed in 592 milliseconds