Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/java/util/concurrent/
DForkJoinTask.java352 int s; Thread t; ForkJoinWorkerThread wt; ForkJoinPool.WorkQueue w; in doJoin() local
355 (w = (wt = (ForkJoinWorkerThread)t).workQueue). in doJoin()
357 wt.pool.awaitJoin(w, this) : in doJoin()
367 int s; Thread t; ForkJoinWorkerThread wt; in doInvoke() local
370 (wt = (ForkJoinWorkerThread)t).pool.awaitJoin(wt.workQueue, this) : in doInvoke()
998 ForkJoinWorkerThread wt = (ForkJoinWorkerThread)t; in get() local
999 p = wt.pool; in get()
1000 w = wt.workQueue; in get()
1088 ForkJoinWorkerThread wt = (ForkJoinWorkerThread)t; in helpQuiesce() local
1089 wt.pool.helpQuiescePool(wt.workQueue); in helpQuiesce()
[all …]
DForkJoinPool.java1014 Thread wt; Thread.State s; in isApparentlyUnblocked() local
1016 (wt = owner) != null && in isApparentlyUnblocked()
1017 (s = wt.getState()) != Thread.State.BLOCKED && in isApparentlyUnblocked()
1300 ForkJoinWorkerThread wt = null; in tryAddWorker() local
1303 (wt = fac.newThread(this)) != null) { in tryAddWorker()
1304 wt.start(); in tryAddWorker()
1310 deregisterWorker(wt, ex); in tryAddWorker()
1328 final WorkQueue registerWorker(ForkJoinWorkerThread wt) { in registerWorker() argument
1330 wt.setDaemon(true); in registerWorker()
1332 wt.setUncaughtExceptionHandler(handler); in registerWorker()
[all …]
DThreadPoolExecutor.java1091 Thread wt = Thread.currentThread(); in runWorker() local
1106 !wt.isInterrupted()) in runWorker()
1107 wt.interrupt(); in runWorker()
1109 beforeExecute(wt, task); in runWorker()