OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:gcThread
(Results
1 - 3
of
3
) sorted by null
/art/test/148-multithread-gc-annotations/src/
Main.java
21
Thread
gcThread
= new Thread(new MovingGCThread(), "Moving GC thread");
23
gcThread
.start();
26
gcThread
.join();
/art/test/153-reference-stress/src/
Main.java
27
Thread
gcThread
= new
GcThread
();
32
gcThread
.start();
36
gcThread
.join();
43
static class
GcThread
extends Thread {
44
GcThread
() {
/art/test/125-gc-and-classloading/src/
Main.java
24
GcThread
gcThread
= new
GcThread
(cdl);
26
gcThread
.start();
28
gcThread
.join();
33
static class
GcThread
extends Thread {
36
GcThread
(CountDownLatch cdl) {
[
all
...]
Completed in 780 milliseconds