Home
last modified time | relevance | path

Searched refs:m_run_to_sp (Results 1 – 2 of 2) sorted by relevance

/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleThreadPlanStepThroughObjCTrampoline.cpp166 if (!m_run_to_sp) in ShouldStop()
190 m_run_to_sp.reset(new ThreadPlanStepOut (m_thread, in ShouldStop()
197 m_thread.QueueThreadPlan(m_run_to_sp, false); in ShouldStop()
198 m_run_to_sp->SetPrivate(true); in ShouldStop()
213 m_run_to_sp.reset(new ThreadPlanRunToAddress(m_thread, target_so_addr, m_stop_others)); in ShouldStop()
214 m_thread.QueueThreadPlan(m_run_to_sp, false); in ShouldStop()
215 m_run_to_sp->SetPrivate(true); in ShouldStop()
218 else if (m_thread.IsThreadPlanDone(m_run_to_sp.get())) in ShouldStop()
DAppleThreadPlanStepThroughObjCTrampoline.h98 lldb::ThreadPlanSP m_run_to_sp; // The plan that runs to the target. variable