OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OP_READ
(Results
1 - 20
of
20
) sorted by null
/libcore/luni/src/main/java/java/nio/channels/
SelectionKey.java
26
* reading ({@code
OP_READ
}) and writing ({@code OP_WRITE}).
49
public static final int
OP_READ
= 1;
169
* {@code (readyOps() &
OP_READ
) ==
OP_READ
}.
177
return (readyOps() &
OP_READ
) ==
OP_READ
;
Pipe.java
74
* @return a static value of
OP_READ
.
78
return SelectionKey.
OP_READ
;
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/spi/
AbstractSelectableChannelTest.java
175
SelectionKey.
OP_READ
, null);
181
acceptKey = sc.register(acceptSelector2, SelectionKey.
OP_READ
, null);
213
msc.register(acceptSelector, SelectionKey.
OP_READ
, null);
227
msc.register(acceptSelector, SelectionKey.
OP_READ
, null);
249
msc.register(acceptSelector, SelectionKey.
OP_READ
, null);
263
msc.register(acceptSelector, SelectionKey.
OP_READ
, null);
280
sc.register(null, SelectionKey.
OP_READ
, argObj);
289
msc.register(acceptSelector, SelectionKey.
OP_READ
, null);
303
sc.register(sel, SelectionKey.
OP_READ
, null);
326
SelectionKey.
OP_READ
, argObj)
[
all
...]
AbstractSelectorTest.java
218
SelectionKey.
OP_READ
, null);
238
SelectionKey.
OP_READ
, null);
/libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
SelectorTest.java
161
SelectionKey key3 = sc.register(selector, SelectionKey.
OP_READ
);
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.",
461
SelectionKey key2 = sc.register(selector, SelectionKey.
OP_READ
);
485
final SelectionKey key = pipe.source().register(selector, SelectionKey.
OP_READ
);
608
sc.register(selector, SelectionKey.
OP_READ
);
614
sc2.register(selector, SelectionKey.
OP_READ
);
624
assertEquals(SelectionKey.
OP_READ
, key.readyOps());
SelectionKeyTest.java
322
MockSelectionKey mockSelectionKey1 = new MockSelectionKey(SelectionKey.
OP_READ
);
SourceChannelTest.java
85
assertEquals(SelectionKey.
OP_READ
, source.validOps());
DatagramChannelTest.java
321
assertEquals((SelectionKey.
OP_READ
| SelectionKey.OP_WRITE),
[
all
...]
/external/kernel-headers/original/linux/
nfs4.h
142
OP_READ
= 25,
/libcore/luni/src/main/java/org/apache/harmony/nio/internal/
SelectorImpl.java
55
private static final int ACCEPT_OR_READ = OP_ACCEPT |
OP_READ
;
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
Client.java
459
mChan.register(sel, SelectionKey.
OP_READ
, this);
MonitorThread.java
491
chan.register(mSelector, SelectionKey.
OP_READ
, dbg);
DeviceMonitor.java
517
socketChannel.register(mSelector, SelectionKey.
OP_READ
, device);
[
all
...]
/libcore/luni/src/test/java/libcore/java/nio/channels/
OldSocketChannelTest.java
184
assertEquals((SelectionKey.OP_CONNECT | SelectionKey.
OP_READ
|
/prebuilt/sdk/5/
android.jar
/prebuilt/sdk/6/
android.jar
/prebuilt/sdk/7/
android.jar
/prebuilt/sdk/8/
android.jar
Completed in 260 milliseconds