Home
last modified time | relevance | path

Searched refs:thread_list (Results 1 – 15 of 15) sorted by relevance

/art/runtime/native/
Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cc55 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()
Ddalvik_system_VMStack.cc37 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()
Djava_lang_Thread.cc131 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/
Dbump_pointer_space.cc105 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/
Dsignal_catcher.cc127 ThreadList* thread_list = runtime->GetThreadList(); in HandleSigQuit() local
132 thread_list->SuspendAll(); in HandleSigQuit()
160 thread_list->ResumeAll(); in HandleSigQuit()
Dmonitor.cc682 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()
Druntime.cc259 ThreadList* thread_list = runtime->GetThreadList(); in DumpAllThreads() local
260 if (thread_list != nullptr) { in DumpAllThreads()
270 thread_list->DumpLocked(os); in DumpAllThreads()
Dprofiler.cc222 ThreadList* thread_list = runtime->GetThreadList(); in RunProfilerThread() local
225 size_t barrier_count = thread_list->RunCheckpointOnRunnableThreads(&check_point); in RunProfilerThread()
Ddebugger.cc2396 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()
DAndroid.mk147 thread_list.cc \
Dthread.cc349 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/
Drosalloc.cc1719 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/
Dmark_sweep.cc983 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in MarkRootsCheckpoint() local
986 size_t barrier_count = thread_list->RunCheckpoint(&check_point); in MarkRootsCheckpoint()
/art/oatdump/
Doatdump.cc1080 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in Dump() local
1081 thread_list->SuspendAll(); in Dump()
1083 thread_list->ResumeAll(); in Dump()
/art/runtime/gc/
Dheap.cc2663 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in RevokeAllThreadLocalAllocationStacks() local
2664 for (Thread* t : thread_list) { in RevokeAllThreadLocalAllocationStacks()