Home
last modified time | relevance | path

Searched refs:GetInstrumentationStack (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Dinstrumentation.cc204 : StackVisitor(thread, context), instrumentation_stack_(thread->GetInstrumentationStack()), in InstrumentationInstallStack()
316 CHECK_EQ(visitor.dex_pcs_.size(), thread->GetInstrumentationStack()->size()); in InstrumentationInstallStack()
322 for (auto isi = thread->GetInstrumentationStack()->rbegin(), in InstrumentationInstallStack()
323 end = thread->GetInstrumentationStack()->rend(); isi != end; ++isi) { in InstrumentationInstallStack()
347 instrumentation_stack_(thread->GetInstrumentationStack()), in InstrumentationRestoreStack()
411 std::deque<instrumentation::InstrumentationStackFrame>* stack = thread->GetInstrumentationStack(); in InstrumentationRestoreStack()
1042 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); in PushInstrumentationStackFrame()
1059 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); in PopInstrumentationStackFrame()
1114 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); in PopMethodForUnwind()
Dstack.cc495 CHECK_LT(depth, thread->GetInstrumentationStack()->size()); in GetInstrumentationStackFrame()
496 return thread->GetInstrumentationStack()->at(depth); in GetInstrumentationStackFrame()
Dthread.h735 std::deque<instrumentation::InstrumentationStackFrame>* GetInstrumentationStack() { in GetInstrumentationStack() function
Dthread.cc2238 for (instrumentation::InstrumentationStackFrame& frame : *GetInstrumentationStack()) { in VisitRoots()