Home
last modified time | relevance | path

Searched refs:workQueues (Results 1 – 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
DForkJoinPool.java697 (p = pool).signalWork(p.workQueues, this); in push()
1233 WorkQueue[] workQueues; // main registry field in ForkJoinPool
1342 if ((ws = workQueues) != null) { // skip if shutting down in registerWorker()
1350 workQueues = ws = Arrays.copyOf(ws, n <<= 1); in registerWorker()
1391 WorkQueue[] ws = workQueues; in deregisterWorker()
1411 if ((ws = workQueues) == null || in deregisterWorker()
1473 WorkQueue[] ws = workQueues; in externalPush()
1526 else if (ps == 0 || (ws = workQueues) == null || in fullExternalPush()
1532 WorkQueue[] nws = ((ws = workQueues) == null || ws.length == 0 ? in fullExternalPush()
1537 if (((ws = workQueues) == null || ws.length == 0) && nws != null) in fullExternalPush()
[all …]