/art/runtime/native/ |
D | org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc | 55 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in DdmVmInternal_getStackTraceById() local 68 thread = thread_list->SuspendThreadByThreadId(thin_lock_id, false, &timed_out); in DdmVmInternal_getStackTraceById() 77 thread_list->Resume(thread, false); in DdmVmInternal_getStackTraceById() 138 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in DdmVmInternal_getThreadStats() local 141 thread_list->ForEach(ThreadCountCallback, &thread_count); in DdmVmInternal_getThreadStats() 147 thread_list->ForEach(ThreadStatsGetterCallback, &bytes); in DdmVmInternal_getThreadStats()
|
D | dalvik_system_VMStack.cc | 37 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in GetThreadStack() local 43 thread = thread_list->SuspendThreadByPeer(peer, true, false, &timed_out); in GetThreadStack() 51 thread_list->Resume(thread, false); in GetThreadStack()
|
D | java_lang_Thread.cc | 131 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in Thread_nativeSetName() local 137 thread = thread_list->SuspendThreadByPeer(peer, true, false, &timed_out); in Thread_nativeSetName() 144 thread_list->Resume(thread, false); in Thread_nativeSetName()
|
/art/runtime/gc/space/ |
D | bump_pointer_space.cc | 105 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in RevokeAllThreadLocalBuffers() local 106 for (Thread* thread : thread_list) { in RevokeAllThreadLocalBuffers() 124 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in AssertAllThreadLocalBuffersAreRevoked() local 125 for (Thread* thread : thread_list) { in AssertAllThreadLocalBuffersAreRevoked() 214 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in GetBytesAllocated() local 219 for (Thread* thread : thread_list) { in GetBytesAllocated() 232 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in GetObjectsAllocated() local 237 for (Thread* thread : thread_list) { in GetObjectsAllocated()
|
/art/runtime/ |
D | signal_catcher.cc | 127 ThreadList* thread_list = runtime->GetThreadList(); in HandleSigQuit() local 132 thread_list->SuspendAll(); in HandleSigQuit() 160 thread_list->ResumeAll(); in HandleSigQuit()
|
D | monitor.cc | 682 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in InflateThinLocked() local 691 owner = thread_list->SuspendThreadByThreadId(owner_thread_id, false, &timed_out); in InflateThinLocked() 701 thread_list->Resume(owner, false); in InflateThinLocked()
|
D | runtime.cc | 259 ThreadList* thread_list = runtime->GetThreadList(); in DumpAllThreads() local 260 if (thread_list != nullptr) { in DumpAllThreads() 270 thread_list->DumpLocked(os); in DumpAllThreads()
|
D | profiler.cc | 222 ThreadList* thread_list = runtime->GetThreadList(); in RunProfilerThread() local 225 size_t barrier_count = thread_list->RunCheckpointOnRunnableThreads(&check_point); in RunProfilerThread()
|
D | debugger.cc | 2396 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in SuspendThread() local 2397 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), request_suspension, true, in SuspendThread() 3371 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in ScopedThreadSuspension() local 3372 suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, true, true, &timed_out); in ScopedThreadSuspension() 3587 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in InvokeMethod() local 3728 thread_list->UndoDebuggerSuspensions(); in InvokeMethod() 3731 thread_list->Resume(targetThread, true); in InvokeMethod() 3756 thread_list->SuspendAllForDebugger(); in InvokeMethod() 3759 thread_list->Resume(targetThread, true); in InvokeMethod()
|
D | Android.mk | 147 thread_list.cc \
|
D | thread.cc | 349 void Thread::Init(ThreadList* thread_list, JavaVMExt* java_vm) { in Init() argument 368 tls32_.thin_lock_thread_id = thread_list->AllocThreadId(this); in Init() 372 thread_list->Register(this); in Init()
|
/art/runtime/gc/allocator/ |
D | rosalloc.cc | 1719 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in RevokeAllThreadLocalRuns() local 1720 for (Thread* thread : thread_list) { in RevokeAllThreadLocalRuns() 1744 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in AssertAllThreadLocalRunsAreRevoked() local 1745 for (Thread* t : thread_list) { in AssertAllThreadLocalRunsAreRevoked() 2018 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in Verify() local 2019 for (auto it = thread_list.begin(); it != thread_list.end(); ++it) { in Verify()
|
/art/runtime/gc/collector/ |
D | mark_sweep.cc | 983 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in MarkRootsCheckpoint() local 986 size_t barrier_count = thread_list->RunCheckpoint(&check_point); in MarkRootsCheckpoint()
|
/art/oatdump/ |
D | oatdump.cc | 1080 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in Dump() local 1081 thread_list->SuspendAll(); in Dump() 1083 thread_list->ResumeAll(); in Dump()
|
/art/runtime/gc/ |
D | heap.cc | 2663 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in RevokeAllThreadLocalAllocationStacks() local 2664 for (Thread* t : thread_list) { in RevokeAllThreadLocalAllocationStacks()
|