OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:readykeys
(Results
1 - 1
of
1
) sorted by null
/libcore/luni/src/main/java/org/apache/harmony/nio/internal/
SelectorImpl.java
119
private SelectionKeyImpl[]
readyKeys
= EMPTY_SELECTION_KEY_IMPLS_ARRAY;
232
Arrays.fill(
readyKeys
, null);
250
* Prepare the readableFDs, writableFDs,
readyKeys
and flags arrays in
266
if (
readyKeys
.length < total) {
267
int newSize = Math.max((int) (
readyKeys
.length * 1.5f), total);
268
readyKeys
= new SelectionKeyImpl[newSize];
280
readyKeys
[r] = key;
285
readyKeys
[w + numReadable] = key;
312
SelectionKeyImpl key =
readyKeys
[i];
Completed in 240 milliseconds