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

/libcore/luni/src/main/java/java/util/concurrent/
H A DForkJoinTask.java181 * NORMAL, CANCELLED, or EXCEPTIONAL. Tasks undergoing blocking
197 private static final int EXCEPTIONAL = -3; field in class:ForkJoinTask
204 * @param completion one of NORMAL, CANCELLED, EXCEPTIONAL
426 return setCompletion(EXCEPTIONAL);
475 if (status != EXCEPTIONAL)
567 if (s == EXCEPTIONAL && (ex = getThrowableException()) != null)
912 if (s == EXCEPTIONAL && (ex = getThrowableException()) != null)
962 if (s != EXCEPTIONAL)
1024 if (status == EXCEPTIONAL)
H A DFutureTask.java59 * NEW -> COMPLETING -> EXCEPTIONAL
67 private static final int EXCEPTIONAL = 3; field in class:FutureTask
218 UNSAFE.putOrderedInt(this, stateOffset, EXCEPTIONAL); // final state

Completed in 29 milliseconds