Home
last modified time | relevance | path

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

/art/test/114-ParallelGC/src/
DMain.java31 Thread[] threads = new Thread[16]; in main() local
47 CyclicBarrier barrier = new CyclicBarrier(threads.length); in main()
49 threads.length); in main()
50 for (int i = 0; i < threads.length; i++) { in main()
54 for (int i = 0; i < threads.length; i++) { in main()
55 threads[i] = new Thread(new Main(i, queues.get(i), queues.get((i + 1) % threads.length), in main()
58 for (Thread thread : threads) { in main()
66 for (Thread thread : threads) { in main()
/art/runtime/
Dthread_list.cc305 VLOG(threads) << *self << " SuspendAll starting..."; in SuspendAll()
307 VLOG(threads) << "Thread[null] SuspendAll starting..."; in SuspendAll()
328 VLOG(threads) << "requesting thread suspend: " << *thread; in SuspendAll()
357 VLOG(threads) << *self << " SuspendAll complete"; in SuspendAll()
359 VLOG(threads) << "Thread[null] SuspendAll complete"; in SuspendAll()
367 VLOG(threads) << *self << " ResumeAll starting"; in ResumeAll()
369 VLOG(threads) << "Thread[null] ResumeAll starting"; in ResumeAll()
397 VLOG(threads) << *self << " ResumeAll waking others"; in ResumeAll()
399 VLOG(threads) << "Thread[null] ResumeAll waking others"; in ResumeAll()
406 VLOG(threads) << *self << " ResumeAll complete"; in ResumeAll()
[all …]
Dthread_pool.cc99 void ThreadPool::SetMaxActiveWorkers(size_t threads) { in SetMaxActiveWorkers() argument
101 CHECK_LE(threads, GetThreadCount()); in SetMaxActiveWorkers()
102 max_active_workers_ = threads; in SetMaxActiveWorkers()
Dthread_linux.cc57 VLOG(threads) << "Alternate signal stack is " << PrettySize(ss.ss_size) << " at " << ss.ss_sp; in SetUpAlternateSignalStack()
Dparsed_options_test.cc80 EXPECT_FALSE(VLOG_IS_ON(threads)); in TEST_F()
Dthread_pool.h96 void SetMaxActiveWorkers(size_t threads);
Dthread.cc272 VLOG(threads) << "installing stack protected region at " << std::hex << in InstallImplicitProtection()
494 VLOG(threads) << StringPrintf("Native stack is at %p (%s with %s guard)", in InitStackHwm()
537 VLOG(threads) << "Limiting unlimited stack (reported as " << PrettySize(old_stack_size) << ")" in InitStackHwm()
729 VLOG(threads) << this << " self-suspending"; in FullSuspendCheck()
736 VLOG(threads) << this << " self-reviving"; in FullSuspendCheck()
2268 VLOG(threads) << "Protecting stack at " << pregion; in ProtectStack()
2278 VLOG(threads) << "Unprotecting stack at " << pregion; in UnprotectStack()
Dparsed_options.cc502 gLogVerbosity.threads = true; in Parse()
Ddebugger.cc3901 std::list<Thread*> threads; in DdmSetThreadNotification() local
3905 threads = Runtime::Current()->GetThreadList()->GetList(); in DdmSetThreadNotification()
3909 for (Thread* thread : threads) { in DdmSetThreadNotification()
/art/test/304-method-tracing/src/
DMain.java31 ArrayList<Thread> threads = new ArrayList<Thread>(); in main() local
33 threads.add(new Thread(new ThreadRunnable(), "TestThread-" + i)); in main()
36 for (Thread t : threads) { in main()
40 for (Thread t : threads) { in main()
/art/test/051-thread/src/
DMain.java36 TestCapacityThread[] threads = new TestCapacityThread[512]; in testThreadCapacity() local
38 threads[i] = new TestCapacityThread(); in testThreadCapacity()
41 for (TestCapacityThread thread : threads) { in testThreadCapacity()
44 for (TestCapacityThread thread : threads) { in testThreadCapacity()
/art/test/114-ParallelGC/
Dinfo.txt1 Imported from oat tests. Allocates and frees objects with multiple threads.
/art/test/078-polymorphic-virtual/
Dinfo.txt2 calless invoked 10,000,000 times each in three threads.
/art/test/033-class-init-deadlock/
Dexpected.txt4 Deadlock test interrupting threads.
/art/test/109-suspend-check/
Dinfo.txt1 To support garbage collection, debugging and profiling the VM must be able to send all threads
/art/runtime/base/
Dlogging.h314 bool threads; member
/art/runtime/gc/allocator/
Drosalloc.cc1968 std::list<Thread*> threads = Runtime::Current()->GetThreadList()->GetList(); in Verify() local
1969 for (Thread* thread : threads) { in Verify()