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

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DThreadPoolExecutor.java413 private static int ctlOf(int rs, int wc) { return rs | wc; } argument
933 int wc = workerCountOf(c);
934 if (wc >= CAPACITY ||
935 wc >= (core ? corePoolSize : maximumPoolSize))
1077 int wc = workerCountOf(c);
1080 boolean timed = allowCoreThreadTimeOut || wc > corePoolSize;
1082 if ((wc > maximumPoolSize || (timed && timedOut))
1083 && (wc > 1 || workQueue.isEmpty())) {
1614 int wc
[all...]

Completed in 123 milliseconds