/art/runtime/native/ |
D | org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc | 65 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in DdmVmInternal_getStackTraceById() local 74 Thread* thread = thread_list->SuspendThreadByThreadId(thin_lock_id, in DdmVmInternal_getStackTraceById() 84 bool resumed = thread_list->Resume(thread, SuspendReason::kInternal); in DdmVmInternal_getStackTraceById() 146 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in DdmVmInternal_getThreadStats() local 149 thread_list->ForEach(ThreadCountCallback, &thread_count); in DdmVmInternal_getThreadStats() 155 thread_list->ForEach(ThreadStatsGetterCallback, &bytes); in DdmVmInternal_getThreadStats()
|
D | dalvik_system_VMStack.cc | 59 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in GetThreadStack() local 61 Thread* thread = thread_list->SuspendThreadByPeer(peer, in GetThreadStack() 72 bool resumed = thread_list->Resume(thread, SuspendReason::kInternal); in GetThreadStack()
|
D | java_lang_Thread.cc | 147 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in Thread_nativeSetName() local 150 Thread* thread = thread_list->SuspendThreadByPeer(peer, in Thread_nativeSetName() 159 bool resumed = thread_list->Resume(thread, SuspendReason::kInternal); in Thread_nativeSetName()
|
/art/runtime/gc/space/ |
D | bump_pointer_space.cc | 107 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in RevokeAllThreadLocalBuffers() local 108 for (Thread* thread : thread_list) { in RevokeAllThreadLocalBuffers() 127 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in AssertAllThreadLocalBuffersAreRevoked() local 128 for (Thread* thread : thread_list) { in AssertAllThreadLocalBuffersAreRevoked() 167 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in GetBytesAllocated() local 172 for (Thread* thread : thread_list) { in GetBytesAllocated() 185 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in GetObjectsAllocated() local 190 for (Thread* thread : thread_list) { in GetObjectsAllocated()
|
D | region_space.cc | 537 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in RevokeAllThreadLocalBuffers() local 538 for (Thread* thread : thread_list) { in RevokeAllThreadLocalBuffers() 555 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in AssertAllThreadLocalBuffersAreRevoked() local 556 for (Thread* thread : thread_list) { in AssertAllThreadLocalBuffersAreRevoked()
|
/art/openjdkjvmti/ |
D | ti_stack.h | 69 const jthread* thread_list,
|
D | ti_stack.cc | 474 const jthread* thread_list, in GetThreadListStackTraces() argument 487 if (thread_list == nullptr || stack_info_ptr == nullptr) { in GetThreadListStackTraces() 535 if (thread_list[i] == nullptr) { in GetThreadListStackTraces() 538 if (!soa.Env()->IsInstanceOf(thread_list[i], art::WellKnownClasses::java_lang_Thread)) { in GetThreadListStackTraces() 541 data.handles.push_back(hs.NewHandle(soa.Decode<art::mirror::Object>(thread_list[i]))); in GetThreadListStackTraces() 617 art::ObjPtr<art::mirror::Object> peer = soa.Decode<art::mirror::Object>(thread_list[i]); in GetThreadListStackTraces() 625 stack_info[i].thread = reinterpret_cast<JNIEnv*>(soa.Env())->NewLocalRef(thread_list[i]); in GetThreadListStackTraces() 637 new_stack_info.thread = reinterpret_cast<JNIEnv*>(soa.Env())->NewLocalRef(thread_list[i]); in GetThreadListStackTraces()
|
D | ti_thread.cc | 588 std::list<art::Thread*> thread_list = art::Runtime::Current()->GetThreadList()->GetList(); in GetAllThreads() local 592 for (art::Thread* thread : thread_list) { in GetAllThreads()
|
D | OpenjdkJvmTi.cc | 300 const jthread* thread_list, in GetThreadListStackTraces() argument 306 thread_list, in GetThreadListStackTraces()
|
/art/openjdkjvm/ |
D | OpenjdkJvm.cc | 419 art::ThreadList* thread_list = art::Runtime::Current()->GetThreadList(); in JVM_SetNativeThreadName() local 424 thread = thread_list->SuspendThreadByPeer(jthread, in JVM_SetNativeThreadName() 434 bool resumed = thread_list->Resume(thread, art::SuspendReason::kInternal); in JVM_SetNativeThreadName()
|
/art/runtime/gc/collector/ |
D | concurrent_copying.cc | 247 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in ActivateReadBarrierEntrypoints() local 250 const size_t barrier_count = thread_list->RunCheckpoint(&checkpoint, &callback); in ActivateReadBarrierEntrypoints() 934 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in ReenableWeakRefAccess() local 935 for (Thread* thread : thread_list) { in ReenableWeakRefAccess() 994 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in IssueDisableMarkingCheckpoint() local 997 size_t barrier_count = thread_list->RunCheckpoint(&check_point, &dmc); in IssueDisableMarkingCheckpoint() 1052 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in IssueEmptyCheckpoint() local 1055 thread_list->RunEmptyCheckpoint(); in IssueEmptyCheckpoint() 1224 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in VerifyNoFromSpaceReferences() local 1225 for (Thread* thread : thread_list) { in VerifyNoFromSpaceReferences() [all …]
|
D | mark_sweep.cc | 1186 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in MarkRootsCheckpoint() local 1189 size_t barrier_count = thread_list->RunCheckpoint(&check_point); in MarkRootsCheckpoint()
|
/art/runtime/ |
D | monitor.cc | 640 ThreadList* const thread_list = Runtime::Current()->GetThreadList(); in FailedUnlock() local 641 Thread* expected_owner = thread_list->FindThreadByThreadId(expected_owner_thread_id); in FailedUnlock() 642 Thread* found_owner = thread_list->FindThreadByThreadId(found_owner_thread_id); in FailedUnlock() 986 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in InflateThinLocked() local 993 owner = thread_list->SuspendThreadByThreadId(owner_thread_id, in InflateThinLocked() 1005 bool resumed = thread_list->Resume(owner, SuspendReason::kInternal); in InflateThinLocked()
|
D | runtime.cc | 495 ThreadList* thread_list = runtime->GetThreadList(); in DumpAllThreads() local 496 if (thread_list != nullptr) { in DumpAllThreads() 506 thread_list->Dump(os); in DumpAllThreads()
|
D | debugger.cc | 2528 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in SuspendThread() local 2529 Thread* thread = thread_list->SuspendThreadByPeer(peer.get(), in SuspendThread() 3776 ThreadList* const thread_list = Runtime::Current()->GetThreadList(); in ScopedDebuggerThreadSuspension() local 3777 suspended_thread = thread_list->SuspendThreadByPeer(thread_peer, in ScopedDebuggerThreadSuspension() 3991 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in PrepareInvokeMethod() local 4125 thread_list->UndoDebuggerSuspensions(); in PrepareInvokeMethod() 4128 bool resumed = thread_list->Resume(targetThread, SuspendReason::kForDebugger); in PrepareInvokeMethod()
|
D | Android.bp | 201 "thread_list.cc",
|
D | thread.cc | 725 bool Thread::Init(ThreadList* thread_list, JavaVMExt* java_vm, JNIEnvExt* jni_env_ext) { in Init() argument 755 tls32_.thin_lock_thread_id = thread_list->AllocThreadId(this); in Init() 770 thread_list->Register(this); in Init()
|
/art/runtime/gc/allocator/ |
D | rosalloc.cc | 1587 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in RevokeAllThreadLocalRuns() local 1589 for (Thread* thread : thread_list) { in RevokeAllThreadLocalRuns() 1614 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in AssertAllThreadLocalRunsAreRevoked() local 1615 for (Thread* t : thread_list) { in AssertAllThreadLocalRunsAreRevoked() 1885 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in Verify() local 1886 for (auto it = thread_list.begin(); it != thread_list.end(); ++it) { in Verify()
|
/art/openjdkjvmti/include/ |
D | jvmti.h | 1522 const jthread* thread_list, 1915 const jthread* thread_list, in GetThreadListStackTraces() 1918 …return functions->GetThreadListStackTraces(this, thread_count, thread_list, max_frame_count, stack… in GetThreadListStackTraces()
|
/art/runtime/gc/ |
D | heap.cc | 3133 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in RevokeAllThreadLocalAllocationStacks() local 3134 for (Thread* t : thread_list) { in RevokeAllThreadLocalAllocationStacks()
|