Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/concurrent/
DForkJoinTask.java268 private static final int THROWN = 1 << 17; field in ForkJoinTask
341 if (installed && casStatus(s, s |= (DONE | ABNORMAL | THROWN))) in trySetThrown()
364 return (s & THROWN) != 0; in isExceptionalStatus()
584 ((s & THROWN) == 0 || (ex = getThrowableException()) == null)) in getException()
595 (s & THROWN) != 0 ? getThrowableException() : null); in reportException()
608 else if ((s & THROWN) != 0 && (ex = getThrowableException()) != null) in reportExecutionException()
874 return (trySetCancelled() & (ABNORMAL | THROWN)) == ABNORMAL; in cancel()
882 return (status & (ABNORMAL | THROWN)) == ABNORMAL; in isCancelled()
/libcore/ojluni/src/main/java/sun/nio/ch/
DIOStatus.java40 @Native public static final int THROWN = -5; // Exception thrown in JNI code field in IOStatus