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

/libcore/ojluni/src/main/java/java/util/
H A DTimerTask.java67 static final int CANCELLED = 3; field in class:TimerTask
119 state = CANCELLED;
/libcore/luni/src/main/java/java/util/concurrent/
H A DFutureTask.java61 * NEW -> CANCELLED
69 private static final int CANCELLED = 4; field in class:FutureTask
92 if (s >= CANCELLED)
129 return state >= CANCELLED;
139 mayInterruptIfRunning ? INTERRUPTING : CANCELLED)))
H A DForkJoinTask.java200 * DONE_MASK) holds value NORMAL, CANCELLED, or EXCEPTIONAL. Tasks
221 static final int CANCELLED = 0xc0000000; // must be < NORMAL field in class:ForkJoinTask
222 static final int EXCEPTIONAL = 0x80000000; // must be < CANCELLED
230 * @param completion one of NORMAL, CANCELLED, EXCEPTIONAL
637 if (s == CANCELLED)
851 return (setCompletion(CANCELLED) & DONE_MASK) == CANCELLED;
859 return (status & DONE_MASK) == CANCELLED;
892 (s == CANCELLED) ? new CancellationException() :
965 if ((s &= DONE_MASK) == CANCELLED)
[all...]
/libcore/luni/src/main/java/java/util/concurrent/locks/
H A DStampedLock.java272 private static final int CANCELLED = 1; field in class:StampedLock
284 volatile int status; // 0, WAITING, or CANCELLED
985 if ((q = h.next) == null || q.status == CANCELLED) {
1073 else if (ps == CANCELLED) {
1257 else if (ps == CANCELLED) {
1307 node.status = CANCELLED;
1310 if (q.status == CANCELLED) {
1325 succ.status == CANCELLED) {
1328 if (t.status != CANCELLED)
1344 if (pred.status != CANCELLED || (p
[all...]
H A DAbstractQueuedSynchronizer.java359 static final int CANCELLED = 1; field in class:AbstractQueuedSynchronizer.Node
379 * CANCELLED: This node is cancelled due to timeout or interrupt.
524 * CANCELLED.
766 node.waitStatus = Node.CANCELLED;
1724 node.waitStatus = Node.CANCELLED;

Completed in 219 milliseconds