Home
last modified time | relevance | path

Searched refs:ThreadPlanStepOut (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/lldb/source/Target/
DThreadPlanStepOut.cpp31 uint32_t ThreadPlanStepOut::s_default_flag_values = 0;
34 ThreadPlanStepOut::ThreadPlanStepOut( in ThreadPlanStepOut() function in ThreadPlanStepOut
85 m_step_out_to_inline_plan_sp = std::make_shared<ThreadPlanStepOut>( in ThreadPlanStepOut()
88 static_cast<ThreadPlanStepOut *>(m_step_out_to_inline_plan_sp.get()) in ThreadPlanStepOut()
161 void ThreadPlanStepOut::SetupAvoidNoDebug( in SetupAvoidNoDebug()
181 void ThreadPlanStepOut::DidPush() { in DidPush()
189 ThreadPlanStepOut::~ThreadPlanStepOut() { in ~ThreadPlanStepOut()
194 void ThreadPlanStepOut::GetDescription(Stream *s, in GetDescription()
240 bool ThreadPlanStepOut::ValidatePlan(Stream *error) { in ValidatePlan()
268 bool ThreadPlanStepOut::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop()
[all …]
DCMakeLists.txt60 ThreadPlanStepOut.cpp
DThread.cpp1326 ThreadPlanSP thread_plan_sp(new ThreadPlanStepOut( in QueueThreadPlanForStepOut()
1340 ThreadPlanSP thread_plan_sp(new ThreadPlanStepOut( in QueueThreadPlanForStepOutNoShouldStop()
1344 ThreadPlanStepOut *new_plan = in QueueThreadPlanForStepOutNoShouldStop()
1345 static_cast<ThreadPlanStepOut *>(thread_plan_sp.get()); in QueueThreadPlanForStepOutNoShouldStop()
/external/llvm-project/lldb/include/lldb/Target/
DThreadPlanStepOut.h18 class ThreadPlanStepOut : public ThreadPlan, public ThreadPlanShouldStopHere {
20 ThreadPlanStepOut(Thread &thread, SymbolContext *addr_context,
27 ~ThreadPlanStepOut() override;
45 GetFlags().Set(ThreadPlanStepOut::s_default_flag_values); in SetFlagsToDefault()
88 ThreadPlanStepOut(const ThreadPlanStepOut &) = delete;
89 const ThreadPlanStepOut &operator=(const ThreadPlanStepOut &) = delete;
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleThreadPlanStepThroughObjCTrampoline.cpp227 : ThreadPlanStepOut(thread, nullptr, true /* first instruction */, in AppleThreadPlanStepThroughDirectDispatch()
305 if (ThreadPlanStepOut::DoPlanExplainsStop(event_ptr)) in DoPlanExplainsStop()
349 ThreadPlanStepOut::DoWillResume(resume_state, current_plan); in DoWillResume()
359 const bool step_out_should_stop = ThreadPlanStepOut::ShouldStop(event_ptr); in ShouldStop()
422 return ThreadPlanStepOut::MischiefManaged(); in MischiefManaged()
DAppleThreadPlanStepThroughObjCTrampoline.h75 class AppleThreadPlanStepThroughDirectDispatch: public ThreadPlanStepOut {
/external/llvm-project/lldb/include/lldb/
Dlldb-forward.h223 class ThreadPlanStepOut; variable