Home
last modified time | relevance | path

Searched refs:threads (Results 51 – 75 of 131) sorted by relevance

123456

/art/test/1922-owned-monitors-info/src/art/
DSuspension.java28 public native static int[] suspendList(Thread... threads); in suspendList() argument
29 public native static int[] resumeList(Thread... threads); in resumeList() argument
/art/test/jvmti-common/
DSuspension.java28 public native static int[] suspendList(Thread... threads); in suspendList() argument
29 public native static int[] resumeList(Thread... threads); in resumeList() argument
/art/test/1953-pop-frame/src/art/
DSuspension.java28 public native static int[] suspendList(Thread... threads); in suspendList() argument
29 public native static int[] resumeList(Thread... threads); in resumeList() argument
/art/test/1913-get-set-local-objects/src/art/
DSuspension.java28 public native static int[] suspendList(Thread... threads); in suspendList() argument
29 public native static int[] resumeList(Thread... threads); in resumeList() argument
/art/test/1951-monitor-enter-no-suspend/src/art/
DSuspension.java28 public native static int[] suspendList(Thread... threads); in suspendList() argument
29 public native static int[] resumeList(Thread... threads); in resumeList() argument
/art/test/1903-suspend-self/src/art/
DSuspension.java28 public native static int[] suspendList(Thread... threads); in suspendList() argument
29 public native static int[] resumeList(Thread... threads); in resumeList() argument
/art/test/1942-suspend-raw-monitor-exit/src/art/
DSuspension.java28 public native static int[] suspendList(Thread... threads); in suspendList() argument
29 public native static int[] resumeList(Thread... threads); in resumeList() argument
/art/test/1902-suspend/src/art/
DSuspension.java28 public native static int[] suspendList(Thread... threads); in suspendList() argument
29 public native static int[] resumeList(Thread... threads); in resumeList() argument
/art/test/1935-get-set-current-frame-jit/src/art/
DSuspension.java28 public native static int[] suspendList(Thread... threads); in suspendList() argument
29 public native static int[] resumeList(Thread... threads); in resumeList() argument
/art/test/1924-frame-pop-toggle/src/art/
DSuspension.java28 public native static int[] suspendList(Thread... threads); in suspendList() argument
29 public native static int[] resumeList(Thread... threads); in resumeList() argument
/art/test/1939-proxy-frames/src/art/
DSuspension.java28 public native static int[] suspendList(Thread... threads); in suspendList() argument
29 public native static int[] resumeList(Thread... threads); in resumeList() argument
/art/test/1927-exception-event/src/art/
DSuspension.java28 public native static int[] suspendList(Thread... threads); in suspendList() argument
29 public native static int[] resumeList(Thread... threads); in resumeList() argument
/art/test/1911-get-local-var-table/src/art/
DSuspension.java28 public native static int[] suspendList(Thread... threads); in suspendList() argument
29 public native static int[] resumeList(Thread... threads); in resumeList() argument
/art/test/1965-get-set-local-primitive-no-tables/src/art/
DSuspension.java28 public native static int[] suspendList(Thread... threads); in suspendList() argument
29 public native static int[] resumeList(Thread... threads); in resumeList() argument
/art/test/1971-multi-force-early-return/src/art/
DSuspension.java28 public native static int[] suspendList(Thread... threads); in suspendList() argument
29 public native static int[] resumeList(Thread... threads); in resumeList() argument
/art/test/1969-force-early-return-void/src/art/
DSuspension.java28 public native static int[] suspendList(Thread... threads); in suspendList() argument
29 public native static int[] resumeList(Thread... threads); in resumeList() argument
/art/test/1986-structural-redefine-multi-thread-stack-scope/src/
DMain.java87 Thread[] threads = new Thread[num_threads]; in main() local
92 threads[id] = in main()
113 threads[id].start(); in main()
118 for (Thread t : threads) { in main()
/art/test/911-get-stack-trace/src/art/
DAllTraces.java42 Thread threads[] = new Thread[N]; in doTest() local
51 threads[i] = t; in doTest()
68 threads[i].join(); in doTest()
/art/test/925-threadgroups/
Dthreadgroups.cc92 jthread* threads; in Java_art_Test925_getThreadGroupChildren() local
98 &threads, in Java_art_Test925_getThreadGroupChildren()
109 return threads[index]; in Java_art_Test925_getThreadGroupChildren()
122 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(threads)); in Java_art_Test925_getThreadGroupChildren()
/art/test/522-checker-regression-monitor-exit/
Dinfo.txt2 The test invokes a synchronized version of Object.hashCode in multiple threads.
3 If monitor-exit is removed, the following threads will get stuck and timeout.
/art/test/925-threadgroups/src/art/
DTest925.java95 Thread[] threads = (Thread[])data[0]; in checkChildren() local
98 List<Thread> threadList = new ArrayList<>(Arrays.asList(threads)); in checkChildren()
126 Thread[] threads = (Thread[])data[0]; in waitGroupChildren() local
127 List<Thread> lthreads = new ArrayList<>(Arrays.asList(threads)); in waitGroupChildren()
143 Thread[] threads = (Thread[])data[0]; in waitGroupChildren() local
144 System.out.println(Arrays.toString(threads)); in waitGroupChildren()
/art/test/952-invoke-custom/src/
DTestInvokeCustomWithConcurrentThreads.java113 Thread[] threads = new Thread[NUMBER_OF_THREADS]; in test() local
115 threads[i] = new Thread(new TestInvokeCustomWithConcurrentThreads()); in test()
116 threads[i].start(); in test()
121 threads[i].join(); in test()
/art/runtime/
Dthread_list.cc619 VLOG(threads) << *self << " SuspendAll for " << cause << " starting..."; in SuspendAll()
621 VLOG(threads) << "Thread[null] SuspendAll for " << cause << " starting..."; in SuspendAll()
664 VLOG(threads) << *self << " SuspendAll complete"; in SuspendAll()
666 VLOG(threads) << "Thread[null] SuspendAll complete"; in SuspendAll()
710 VLOG(threads) << "requesting thread suspend: " << *thread; in SuspendAllInternal()
778 VLOG(threads) << *self << " ResumeAll starting"; in ResumeAll()
780 VLOG(threads) << "Thread[null] ResumeAll starting"; in ResumeAll()
812 VLOG(threads) << *self << " ResumeAll waking others"; in ResumeAll()
814 VLOG(threads) << "Thread[null] ResumeAll waking others"; in ResumeAll()
820 VLOG(threads) << *self << " ResumeAll complete"; in ResumeAll()
[all …]
/art/test/1960-obsolete-jit-multithread-native/src/
DMain.java133 Thread[] threads = new Thread[NUM_THREADS]; in doTest() local
135 threads[i] = new TestThread(t, watchers[i], say_nothing, request_redefine); in doTest()
136 threads[i].start(); in doTest()
139 Arrays.stream(threads).forEach((thr) -> { in doTest()
/art/test/1961-obsolete-jit-multithread/src/
DMain.java131 Thread[] threads = new Thread[NUM_THREADS]; in doTest() local
133 threads[i] = new TestThread(t, watchers[i], say_nothing, request_redefine); in doTest()
134 threads[i].start(); in doTest()
137 Arrays.stream(threads).forEach((thr) -> { in doTest()

123456