Searched refs:thread_list (Results 1 - 16 of 16) sorted by relevance

/art/runtime/native/
H A Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cc27 #include "thread_list.h"
57 ThreadList* thread_list = Runtime::Current()->GetThreadList(); local
66 Thread* thread = thread_list->SuspendThreadByThreadId(thin_lock_id, false, &timed_out);
74 thread_list->Resume(thread, false);
135 ThreadList* thread_list = Runtime::Current()->GetThreadList(); local
138 thread_list->ForEach(ThreadCountCallback, &thread_count);
144 thread_list->ForEach(ThreadStatsGetterCallback, &bytes);
H A Ddalvik_system_VMStack.cc27 #include "thread_list.h"
39 ThreadList* thread_list = Runtime::Current()->GetThreadList(); local
41 Thread* thread = thread_list->SuspendThreadByPeer(peer, true, false, &timed_out);
49 thread_list->Resume(thread, false);
H A Djava_lang_Thread.cc27 #include "thread_list.h"
143 ThreadList* thread_list = Runtime::Current()->GetThreadList(); local
146 Thread* thread = thread_list->SuspendThreadByPeer(peer, true, false, &timed_out);
152 thread_list->Resume(thread, false);
/art/runtime/gc/space/
H A Dbump_pointer_space.cc21 #include "thread_list.h"
107 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); local
108 for (Thread* thread : thread_list) {
127 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); local
128 for (Thread* thread : thread_list) {
219 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); local
224 for (Thread* thread : thread_list) {
237 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); local
242 for (Thread* thread : thread_list) {
H A Dregion_space.cc21 #include "thread_list.h"
385 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); local
386 for (Thread* thread : thread_list) {
403 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); local
404 for (Thread* thread : thread_list) {
/art/runtime/openjdkjvm/
H A DOpenjdkJvm.cc43 #include "thread_list.h"
420 art::ThreadList* thread_list = art::Runtime::Current()->GetThreadList(); local
425 thread = thread_list->SuspendThreadByPeer(jthread, true, false, &timed_out);
432 thread_list->Resume(thread, false);
/art/runtime/
H A Dmonitor.cc35 #include "thread_list.h"
476 ThreadList* const thread_list = Runtime::Current()->GetThreadList(); local
477 Thread* expected_owner = thread_list->FindThreadByThreadId(expected_owner_thread_id);
478 Thread* found_owner = thread_list->FindThreadByThreadId(found_owner_thread_id);
820 ThreadList* thread_list = Runtime::Current()->GetThreadList(); local
827 owner = thread_list->SuspendThreadByThreadId(owner_thread_id, false, &timed_out);
837 thread_list->Resume(owner, false);
H A Dprofiler.cc41 #include "thread_list.h"
225 ThreadList* thread_list = runtime->GetThreadList(); local
228 size_t barrier_count = thread_list->RunCheckpointOnRunnableThreads(&check_point);
H A Druntime.cc133 #include "thread_list.h"
233 // could call RosAlloc::InspectAll() which needs the thread_list
373 ThreadList* thread_list = runtime->GetThreadList(); local
374 if (thread_list != nullptr) {
384 thread_list->Dump(os);
H A Ddebugger.cc53 #include "thread_list.h"
2385 ThreadList* thread_list = Runtime::Current()->GetThreadList(); local
2386 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true,
3626 ThreadList* const thread_list = Runtime::Current()->GetThreadList(); local
3627 suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true, &timed_out);
3835 ThreadList* thread_list = Runtime::Current()->GetThreadList(); local
3971 thread_list->UndoDebuggerSuspensions();
3974 thread_list->Resume(targetThread, true);
H A DAndroid.mk183 thread_list.cc \
H A Dthread.cc69 #include "thread_list.h"
685 bool Thread::Init(ThreadList* thread_list, JavaVMExt* java_vm, JNIEnvExt* jni_env_ext) { argument
715 tls32_.thin_lock_thread_id = thread_list->AllocThreadId(this);
728 thread_list->Register(this);
/art/runtime/gc/collector/
H A Dconcurrent_copying.cc33 #include "thread_list.h"
480 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); local
481 for (Thread* thread : thread_list) {
517 ThreadList* thread_list = Runtime::Current()->GetThreadList(); local
519 size_t barrier_count = thread_list->RunCheckpoint(&check_point);
554 ThreadList* thread_list = Runtime::Current()->GetThreadList(); local
556 size_t barrier_count = thread_list->RunCheckpoint(&check_point);
778 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); local
779 for (Thread* thread : thread_list) {
927 ThreadList* thread_list local
[all...]
H A Dmark_sweep.cc45 #include "thread_list.h"
1164 ThreadList* thread_list = Runtime::Current()->GetThreadList(); local
1167 size_t barrier_count = thread_list->RunCheckpoint(&check_point);
/art/runtime/gc/allocator/
H A Drosalloc.cc27 #include "thread_list.h"
1593 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); local
1595 for (Thread* thread : thread_list) {
1620 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); local
1621 for (Thread* t : thread_list) {
1891 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); local
1892 for (auto it = thread_list.begin(); it != thread_list.end(); ++it) {
/art/runtime/gc/
H A Dheap.cc74 #include "thread_list.h"
3238 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); local
3239 for (Thread* t : thread_list) {

Completed in 1013 milliseconds