Searched refs:THROWN (Results 1 – 2 of 2) sorted by relevance
268 private static final int THROWN = 1 << 17; field in ForkJoinTask341 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()
40 @Native public static final int THROWN = -5; // Exception thrown in JNI code field in IOStatus