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);
48 thread_list->Resume(thread, false);
H A Djava_lang_Thread.cc28 #include "thread_list.h"
133 ThreadList* thread_list = Runtime::Current()->GetThreadList(); local
136 Thread* thread = thread_list->SuspendThreadByPeer(peer, true, false, &timed_out);
142 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/gc/allocator/
H A Drosalloc.cc26 #include "thread_list.h"
1732 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); local
1734 for (Thread* thread : thread_list) {
1759 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); local
1760 for (Thread* t : thread_list) {
2041 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); local
2042 for (auto it = thread_list.begin(); it != thread_list.end(); ++it) {
/art/runtime/
H A Dmonitor.cc37 #include "thread_list.h"
666 ThreadList* thread_list = Runtime::Current()->GetThreadList(); local
673 owner = thread_list->SuspendThreadByThreadId(owner_thread_id, false, &timed_out);
683 thread_list->Resume(owner, false);
H A Dprofiler.cc42 #include "thread_list.h"
223 ThreadList* thread_list = runtime->GetThreadList(); local
226 size_t barrier_count = thread_list->RunCheckpointOnRunnableThreads(&check_point);
H A Druntime.cc127 #include "thread_list.h"
206 // could call RosAlloc::InspectAll() which needs the thread_list
336 ThreadList* thread_list = runtime->GetThreadList(); local
337 if (thread_list != nullptr) {
347 thread_list->Dump(os);
H A DAndroid.mk163 thread_list.cc \
H A Dthread.cc68 #include "thread_list.h"
471 bool Thread::Init(ThreadList* thread_list, JavaVMExt* java_vm, JNIEnvExt* jni_env_ext) { argument
496 tls32_.thin_lock_thread_id = thread_list->AllocThreadId(this);
509 thread_list->Register(this);
H A Ddebugger.cc51 #include "thread_list.h"
2448 ThreadList* thread_list = Runtime::Current()->GetThreadList(); local
2449 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true,
3637 ThreadList* thread_list = Runtime::Current()->GetThreadList(); local
3638 Thread* suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true,
3847 ThreadList* thread_list = Runtime::Current()->GetThreadList(); local
3977 thread_list->UndoDebuggerSuspensions();
3980 thread_list->Resume(targetThread, true);
/art/runtime/gc/collector/
H A Dmark_sweep.cc48 #include "thread_list.h"
1096 ThreadList* thread_list = Runtime::Current()->GetThreadList(); local
1099 size_t barrier_count = thread_list->RunCheckpoint(&check_point);
H A Dconcurrent_copying.cc29 #include "thread_list.h"
437 ThreadList* thread_list = Runtime::Current()->GetThreadList(); local
439 size_t barrier_count = thread_list->RunCheckpoint(&check_point);
/art/oatdump/
H A Doatdump.cc56 #include "thread_list.h"
1498 ThreadList* thread_list = Runtime::Current()->GetThreadList(); local
1499 thread_list->SuspendAll(__FUNCTION__);
1501 thread_list->ResumeAll();
/art/runtime/gc/
H A Dheap.cc75 #include "thread_list.h"
2972 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); local
2973 for (Thread* t : thread_list) {

Completed in 698 milliseconds