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

/libcore/luni/src/main/java/java/util/concurrent/
H A DThreadPoolExecutor.java362 private static int ctlOf(int rs, int wc) { return rs | wc; } argument
879 int wc = workerCountOf(c);
880 if (wc >= CAPACITY ||
881 wc >= (core ? corePoolSize : maximumPoolSize))
1023 int wc = workerCountOf(c);
1026 boolean timed = allowCoreThreadTimeOut || wc > corePoolSize;
1028 if ((wc > maximumPoolSize || (timed && timedOut))
1029 && (wc > 1 || workQueue.isEmpty())) {
1554 int wc
[all...]

Completed in 30 milliseconds