/art/test/149-suspend-all-stress/ |
D | suspend_all.cc | 45 Runtime::Current()->GetThreadList()->Dump(LOG_STREAM(INFO)); in Java_Main_suspendAndResume() 53 Runtime::Current()->GetThreadList()->Dump(LOG_STREAM(INFO)); in Java_Main_suspendAndResume()
|
/art/runtime/gc/space/ |
D | bump_pointer_space.cc | 116 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in RevokeAllThreadLocalBuffers() 136 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in AssertAllThreadLocalBuffersAreRevoked() 176 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in GetBytesAllocated() 194 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in GetObjectsAllocated()
|
D | region_space.cc | 878 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in RevokeAllThreadLocalBuffers() 896 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in AssertAllThreadLocalBuffersAreRevoked()
|
/art/runtime/native/ |
D | org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc | 65 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in DdmVmInternal_getStackTraceById() 146 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in DdmVmInternal_getThreadStats()
|
D | dalvik_system_VMStack.cc | 59 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in GetThreadStack()
|
D | java_lang_Thread.cc | 147 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in Thread_setNativeName()
|
D | dalvik_system_ZygoteHooks.cc | 128 runtime->GetThreadList()->ForEach(DoCollectNonDebuggableCallback, &classes); in CollectNonDebuggableClasses()
|
/art/runtime/ |
D | runtime-inl.h | 96 Runtime::Current()->GetThreadList()->ForEach([](Thread* thread, void*) { in DoAndMaybeSwitchInterpreter()
|
D | instrumentation.cc | 772 runtime->GetThreadList()->ForEach(InstrumentationInstallStack, this); in UpdateStubs() 786 Runtime::Current()->GetThreadList()->ForEach(InstrumentationRestoreStack, this); in UpdateStubs() 856 runtime->GetThreadList()->ForEach(ResetQuickAllocEntryPointsForThread, nullptr); in ResetQuickAllocEntryPoints() 981 Runtime::Current()->GetThreadList()->ForEach(InstrumentationInstallStack, this); in Deoptimize() 1017 Runtime::Current()->GetThreadList()->ForEach(InstrumentationRestoreStack, this); in Undeoptimize()
|
D | monitor.cc | 508 Thread* original_owner = Runtime::Current()->GetThreadList()->FindThreadByThreadId( in Lock() 644 ThreadList* const thread_list = Runtime::Current()->GetThreadList(); in FailedUnlock() 1042 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in InflateThinLocked() 1675 owner_ = Runtime::Current()->GetThreadList()->FindThreadByThreadId(lock_word.ThinLockOwner()); in MonitorInfo()
|
D | trace.cc | 300 runtime->GetThreadList()->ForEach(GetSample, the_trace); in RunSamplingThread() 479 runtime->GetThreadList()->ForEach(ClearThreadStackTraceAndClockBase, nullptr); in StopTracing() 1017 Runtime::Current()->GetThreadList()->ForEach(DumpThread, &os); in DumpThreadList()
|
D | thread_list.cc | 302 runtime->GetThreadList()->Dump(ss); in UnsafeLogFatalForThreadSuspendAllTimeout() 1565 Runtime::Current()->GetThreadList()->SuspendAll(cause, long_suspend); in ScopedSuspendAll() 1569 Runtime::Current()->GetThreadList()->ResumeAll(); in ~ScopedSuspendAll()
|
D | debugger.cc | 764 Runtime::Current()->GetThreadList()->UndoDebuggerSuspensions(); in UndoDebuggerSuspensions() 2342 all_threads_list = Runtime::Current()->GetThreadList()->GetList(); in GetThreads() 2458 Runtime::Current()->GetThreadList()->SuspendAllForDebugger(); in SuspendVM() 2462 Runtime::Current()->GetThreadList()->ResumeAllForDebugger(); in ResumeVM() 2478 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in SuspendThread() 2512 bool resumed = Runtime::Current()->GetThreadList()->Resume(thread, SuspendReason::kForDebugger); in ResumeThread() 2518 Runtime::Current()->GetThreadList()->SuspendSelfForDebugger(); in SuspendSelf() 3652 ThreadList* const thread_list = Runtime::Current()->GetThreadList(); in ScopedDebuggerThreadSuspension() 3679 bool resumed = Runtime::Current()->GetThreadList()->Resume(thread_, in ~ScopedDebuggerThreadSuspension() 3846 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in PrepareInvokeMethod() [all …]
|
D | runtime_common.cc | 430 runtime->GetThreadList()->Dump(std::cerr, kDumpNativeStackOnTimeout); in HandleUnexpectedSignalCommonDump()
|
D | thread.cc | 601 CHECK(self->Init(runtime->GetThreadList(), runtime->GetJavaVM(), self->tlsPtr_.tmp_jni_env)); in CreateCallback() 644 Runtime::Current()->GetThreadList()->Unregister(self); in CreateCallback() 982 bool init_success = self->Init(runtime->GetThreadList(), runtime->GetJavaVM()); in Attach() 998 runtime->GetThreadList()->Unregister(self); in Attach() 1394 Runtime::Current()->GetThreadList()->Dump(ss); in UnsafeLogFatalForSuspendCount() 1561 Runtime::Current()->GetThreadList()->EmptyCheckpointBarrier()->Pass(this); in RunEmptyCheckpoint() 4251 Runtime::Current()->GetThreadList()->RunCheckpoint(&closure); in ClearAllInterpreterCaches()
|
D | cha.cc | 700 size_t threads_running_checkpoint = runtime->GetThreadList()->RunCheckpoint(&checkpoint); in InvalidateSingleImplementationMethods()
|
/art/openjdkjvmti/ |
D | deopt_manager.cc | 161 art::Runtime::Current()->GetThreadList()->ForEach(func, &dtdc); in DumpDeoptInfo() 347 art::Runtime::Current()->GetThreadList()->SuspendAll("JMVTI Deoptimizing methods", in ScopedDeoptimizationContext() 357 art::Runtime::Current()->GetThreadList()->ResumeAll(); in RELEASE()
|
D | ti_object.cc | 111 for (art::Thread* thd : art::Runtime::Current()->GetThreadList()->GetList()) { in GetObjectMonitorUsage()
|
D | ti_thread.cc | 639 std::list<art::Thread*> thread_list = art::Runtime::Current()->GetThreadList()->GetList(); in GetAllThreads() 687 art::ThreadList* list = art::Runtime::Current()->GetThreadList(); in RemoveEnvironment() 896 art::Thread* ret_target = art::Runtime::Current()->GetThreadList()->SuspendThreadByPeer( in SuspendOther() 994 if (!art::Runtime::Current()->GetThreadList()->Resume(target, in ResumeThread()
|
D | ti_threadgroup.cc | 174 for (art::Thread* t : art::Runtime::Current()->GetThreadList()->GetList()) { in GetThreads()
|
/art/runtime/gc/collector/ |
D | garbage_collector.cc | 240 runtime->GetThreadList()->SuspendAll(__FUNCTION__); in ScopedPause() 258 runtime->GetThreadList()->ResumeAll(); in ~ScopedPause()
|
D | semi_space.cc | 186 runtime->GetThreadList()->DumpForSigQuit(oss); in MarkingPhase() 187 runtime->GetThreadList()->DumpNativeStacks(oss); in MarkingPhase()
|
D | concurrent_copying.cc | 282 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in ActivateReadBarrierEntrypoints() 744 size_t barrier_count = Runtime::Current()->GetThreadList()->FlipThreadRoots( in FlipThreadRoots() 1012 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in CaptureThreadRootsForMarking() 1635 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in ReenableWeakRefAccess() 1695 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in IssueDisableMarkingCheckpoint() 1728 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in IssueEmptyCheckpoint() 1898 std::list<Thread*> thread_list = Runtime::Current()->GetThreadList()->GetList(); in VerifyNoFromSpaceReferences() 1987 ThreadList* thread_list = Runtime::Current()->GetThreadList(); in RevokeThreadLocalMarkStacks()
|
/art/runtime/jni/ |
D | jni_env_ext.cc | 310 runtime->GetThreadList()->ForEach(ThreadResetFunctionTable, nullptr); in SetTableOverride()
|
/art/openjdkjvm/ |
D | OpenjdkJvm.cc | 417 art::ThreadList* thread_list = art::Runtime::Current()->GetThreadList(); in JVM_SetNativeThreadName()
|