Home
last modified time | relevance | path

Searched refs:ForEach (Results 1 – 5 of 5) sorted by relevance

/art/runtime/native/
Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cc141 thread_list->ForEach(ThreadCountCallback, &thread_count); in DdmVmInternal_getThreadStats()
147 thread_list->ForEach(ThreadStatsGetterCallback, &bytes); in DdmVmInternal_getThreadStats()
/art/runtime/
Dthread_list.h112 void ForEach(void (*callback)(Thread*, void*), void* context)
Dinstrumentation.cc600 runtime->GetThreadList()->ForEach(InstrumentationInstallStack, this); in ConfigureStubs()
614 Runtime::Current()->GetThreadList()->ForEach(InstrumentationRestoreStack, this); in ConfigureStubs()
675 runtime->GetThreadList()->ForEach(ResetQuickAllocEntryPointsForThread, NULL); in ResetQuickAllocEntryPoints()
809 Runtime::Current()->GetThreadList()->ForEach(InstrumentationInstallStack, this); in Deoptimize()
856 Runtime::Current()->GetThreadList()->ForEach(InstrumentationRestoreStack, this); in Undeoptimize()
Dtrace.cc317 runtime->GetThreadList()->ForEach(GetSample, the_trace); in RunSamplingThread()
422 runtime->GetThreadList()->ForEach(ClearThreadStackTraceAndClockBase, NULL); in Stop()
711 Runtime::Current()->GetThreadList()->ForEach(DumpThread, &os); in DumpThreadList()
Dthread_list.cc875 void ThreadList::ForEach(void (*callback)(Thread*, void*), void* context) { in ForEach() function in art::ThreadList