Home
last modified time | relevance | path

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

/art/test/1958-transform-try-jit/src/art/
DTest1958.java23 static class Runner { class in Test1958
92 Method doSayHi = Runner.class.getDeclaredMethod("doSayHi"); in run()
93 Method dontSayHi = Runner.class.getDeclaredMethod("dontSayHi"); in run()
/art/test/169-threadgroup-jni/
Djni_daemon_thread.cc27 static void* Runner(void* arg) { in Runner() function
57 int pthread_create_result = pthread_create(&pthread, nullptr, Runner, global_thread_group); in Java_Main_testNativeThread()
/art/test/168-vmstack-annotated/src/
DMain.java28 static class Runner implements Runnable { class in Main
32 public Runner(List<Object> locks, List<CyclicBarrier> barriers) { in Runner() method in Main.Runner
141 Thread t1 = new Thread(new Runner(l1, b1)); in testCluster1()
144 Thread t2 = new Thread(new Runner(l2, b2)); in testCluster1()