Home
last modified time | relevance | path

Searched refs:DONE_MASK (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
DForkJoinTask.java248 static final int DONE_MASK = 0xf0000000; // mask out non-completion bits field in ForkJoinTask
490 if ((s & DONE_MASK) == EXCEPTIONAL) in setExceptionalCompletion()
711 if ((s = doJoin() & DONE_MASK) != NORMAL) in join()
726 if ((s = doInvoke() & DONE_MASK) != NORMAL) in invoke()
751 if ((s1 = t1.doInvoke() & DONE_MASK) != NORMAL) in invokeAll()
753 if ((s2 = t2.doJoin() & DONE_MASK) != NORMAL) in invokeAll()
880 return (setCompletion(CANCELLED) & DONE_MASK) == CANCELLED; in cancel()
888 return (status & DONE_MASK) == CANCELLED; in isCancelled()
908 return (status & DONE_MASK) == NORMAL; in isCompletedNormally()
919 int s = status & DONE_MASK; in getException()
[all …]