Lines Matching defs:exc
48 private volatile Throwable exc;
155 exc = x;
182 if (exc != null) {
183 if (exc == CANCELLED)
185 throw new ExecutionException(exc);
199 if (exc != null) {
200 if (exc == CANCELLED)
202 throw new ExecutionException(exc);
208 return (exc != CANCELLED) ? exc : null;
217 return (exc == CANCELLED);
236 exc = CANCELLED;