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

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DThreadPoolExecutor.java410 private static int ctlOf(int rs, int wc) { return rs | wc; } argument
928 int wc = workerCountOf(c);
929 if (wc >= CAPACITY ||
930 wc >= (core ? corePoolSize : maximumPoolSize))
1072 int wc = workerCountOf(c);
1075 boolean timed = allowCoreThreadTimeOut || wc > corePoolSize;
1077 if ((wc > maximumPoolSize || (timed && timedOut))
1078 && (wc > 1 || workQueue.isEmpty())) {
1609 int wc
[all...]

Completed in 49 milliseconds