OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OP_WRITE
(Results
1 - 15
of
15
) sorted by null
/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;
192
* {@code (readyOps() &
OP_WRITE
) ==
OP_WRITE
}.
200
return (readyOps() &
OP_WRITE
) ==
OP_WRITE
;
Pipe.java
48
* @return a static value of
OP_WRITE
.
52
return SelectionKey.
OP_WRITE
;
DatagramChannel.java
72
* <code>SelectionKey.OP_READ</code> | <code>SelectionKey.
OP_WRITE
</code> ).
79
return (SelectionKey.OP_READ | SelectionKey.
OP_WRITE
);
SocketChannel.java
121
* {@code SelectionKey.OP_CONNECT | SelectionKey.OP_READ | SelectionKey.
OP_WRITE
}.
128
return (SelectionKey.OP_CONNECT | SelectionKey.OP_READ | SelectionKey.
OP_WRITE
);
/libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
SelectionKeyTest.java
193
selectionKey.interestOps(SelectionKey.
OP_WRITE
);
194
assertEquals(SelectionKey.
OP_WRITE
, selectionKey.interestOps());
338
MockSelectionKey mockSelectionKey1 = new MockSelectionKey(SelectionKey.
OP_WRITE
);
348
SelectionKey key = pipe.sink().register(selector, SelectionKey.
OP_WRITE
);
SelectorTest.java
246
notes = "Verifies selectNow() method for Selector registered with SelectionKeys.OP_ACCEPT, SelectionKeys.OP_CONNECT, SelectionKeys.OP_READ, SelectionKeys.
OP_WRITE
keys.",
289
notes = "Verifies select() method for Selector registered with SelectionKeys.OP_ACCEPT, SelectionKeys.OP_CONNECT, SelectionKeys.OP_READ, SelectionKeys.
OP_WRITE
keys.",
318
notes = "Verifies select(long) method for Selector registered with SelectionKeys.OP_ACCEPT, SelectionKeys.OP_CONNECT, SelectionKeys.OP_READ, SelectionKeys.
OP_WRITE
keys and different timeout's values.",
679
sc.register(selector, SelectionKey.
OP_WRITE
);
686
assertEquals(SelectionKey.
OP_WRITE
, key.readyOps());
SinkChannelTest.java
97
assertEquals(SelectionKey.
OP_WRITE
, sink.validOps());
DatagramChannelTest.java
321
assertEquals((SelectionKey.OP_READ | SelectionKey.
OP_WRITE
),
[
all
...]
/libcore/luni/src/main/java/org/apache/harmony/nio/internal/
SelectorImpl.java
53
private static final int CONNECT_OR_WRITE = OP_CONNECT |
OP_WRITE
;
246
OP_WRITE
: CONNECT_OR_WRITE;
322
selectedOp =
OP_WRITE
& ops;
/external/kernel-headers/original/linux/
nfs4.h
155
OP_WRITE
= 38,
/libcore/luni/src/test/java/libcore/java/nio/channels/
OldSocketChannelTest.java
185
SelectionKey.
OP_WRITE
), this.channel1.validOps());
/prebuilt/sdk/5/
android.jar
/prebuilt/sdk/6/
android.jar
/prebuilt/sdk/7/
android.jar
/prebuilt/sdk/8/
android.jar
Completed in 332 milliseconds