Searched defs:EXCEPTIONAL (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DFutureTask.java89 * NEW -> COMPLETING -> EXCEPTIONAL
97 private static final int EXCEPTIONAL = 3; field in class:FutureTask
251 U.putOrderedInt(this, STATE, EXCEPTIONAL); // final state
H A DForkJoinTask.java229 * DONE_MASK) holds value NORMAL, CANCELLED, or EXCEPTIONAL. Tasks
251 static final int EXCEPTIONAL = 0x80000000; // must be < CANCELLED field in class:ForkJoinTask
259 * @param completion one of NORMAL, CANCELLED, EXCEPTIONAL
478 s = setCompletion(EXCEPTIONAL);
490 if ((s & DONE_MASK) == EXCEPTIONAL)
668 if (s == EXCEPTIONAL)
996 if (s == EXCEPTIONAL)
1054 if (s != EXCEPTIONAL)
1114 if ((status & DONE_MASK) == EXCEPTIONAL)

Completed in 51 milliseconds