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

/libcore/luni/src/main/java/java/util/concurrent/
H A DThreadPoolExecutor.java311 * STOP: Don't accept new tasks, don't process queued tasks,
324 * (RUNNING or SHUTDOWN) -> STOP
328 * STOP -> TIDYING
350 private static final int STOP = 1 << COUNT_BITS; field in class:ThreadPoolExecutor
613 * @param targetState the desired state, either SHUTDOWN or STOP
627 * and queue empty) or (STOP and pool empty). If otherwise
770 if (runStateLessThan(ctl.get(), STOP) &&
772 runStateAtLeast(ctl.get(), STOP))
916 // STOP, which could result in a rare missed interrupt,
919 if (runStateOf(ctl.get()) == STOP
[all...]

Completed in 19 milliseconds