Searched defs:CANCELLED (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/
H A DTimerTask.java67 static final int CANCELLED = 3; field in class:TimerTask
119 state = CANCELLED;
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DPendingFuture.java38 private static final CancellationException CANCELLED = field in class:PendingFuture
183 if (exc == CANCELLED)
200 if (exc == CANCELLED)
208 return (exc != CANCELLED) ? exc : null;
217 return (exc == CANCELLED);
236 exc = CANCELLED;
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DFutureTask.java89 * NEW -> CANCELLED
97 private static final int CANCELLED = 4; field in class:FutureTask
120 if (s >= CANCELLED)
157 return state >= CANCELLED;
175 else if (!UNSAFE.compareAndSwapInt(this, stateOffset, NEW, CANCELLED))
H A DForkJoinTask.java210 * NORMAL, CANCELLED, or EXCEPTIONAL. Tasks undergoing blocking
225 private static final int CANCELLED = -2; field in class:ForkJoinTask
233 * @param completion one of NORMAL, CANCELLED, EXCEPTIONAL
594 if ((s = status) == CANCELLED)
823 return setCompletion(CANCELLED) == CANCELLED;
844 return status == CANCELLED;
877 (s == CANCELLED) ? new CancellationException() :
939 if (s == CANCELLED)
989 if (s == CANCELLED)
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/locks/
H A DAbstractQueuedLongSynchronizer.java164 static final int CANCELLED = 1; field in class:AbstractQueuedLongSynchronizer.Node
184 * CANCELLED: This node is cancelled due to timeout or interrupt.
297 * CANCELLED.
537 node.waitStatus = Node.CANCELLED;
1508 node.waitStatus = Node.CANCELLED;
H A DAbstractQueuedSynchronizer.java387 static final int CANCELLED = 1; field in class:AbstractQueuedSynchronizer.Node
407 * CANCELLED: This node is cancelled due to timeout or interrupt.
520 * CANCELLED.
760 node.waitStatus = Node.CANCELLED;
1731 node.waitStatus = Node.CANCELLED;

Completed in 36 milliseconds