OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ctlof
(Results
1 - 1
of
1
) sorted by null
/libcore/luni/src/main/java/java/util/concurrent/
ThreadPoolExecutor.java
347
private final AtomicInteger ctl = new AtomicInteger(
ctlOf
(RUNNING, 0));
361
private static int
ctlOf
(int rs, int wc) { return rs | wc; }
644
ctl.compareAndSet(c,
ctlOf
(targetState, workerCountOf(c))))
674
if (ctl.compareAndSet(c,
ctlOf
(TIDYING, 0))) {
678
ctl.set(
ctlOf
(TERMINATED, 0));
[
all
...]
Completed in 99 milliseconds