OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EXCEPTIONAL
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/main/java/java/util/concurrent/
ForkJoinTask.java
205
* DONE_MASK) holds value NORMAL, CANCELLED, or
EXCEPTIONAL
. Tasks
227
static final int
EXCEPTIONAL
= 0x80000000; // must be < CANCELLED
235
* @param completion one of NORMAL, CANCELLED,
EXCEPTIONAL
433
s = setCompletion(
EXCEPTIONAL
);
445
if ((s & DONE_MASK) ==
EXCEPTIONAL
)
517
if ((status & DONE_MASK) !=
EXCEPTIONAL
)
630
if (s ==
EXCEPTIONAL
)
700
* individual tasks is not guaranteed upon
exceptional
return. The
726
* tasks is not guaranteed upon
exceptional
return. The status of
768
* status of individual tasks is not guaranteed upon
exceptional
[
all
...]
FutureTask.java
59
* NEW -> COMPLETING ->
EXCEPTIONAL
67
private static final int
EXCEPTIONAL
= 3;
221
UNSAFE.putOrderedInt(this, stateOffset,
EXCEPTIONAL
); // final state
Completed in 33 milliseconds