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

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DScheduledThreadPoolExecutor.java204 int heapIndex; field in class:ScheduledThreadPoolExecutor.ScheduledFutureTask
284 // The racy read of heapIndex below is benign:
285 // if heapIndex < 0, then OOTA guarantees that we have surely
288 if (cancelled && removeOnCancel && heapIndex >= 0)
869 * heapIndex is set to -1. Note that ScheduledFutureTasks can
872 * identified by heapIndex.
906 * Sets f's heapIndex if it is a ScheduledFutureTask.
910 ((ScheduledFutureTask)f).heapIndex = idx;
970 int i = ((ScheduledFutureTask) x).heapIndex;

Completed in 5 milliseconds