Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanBase.cpp29 ThreadPlanBase::ThreadPlanBase(Thread &thread) in ThreadPlanBase() function in ThreadPlanBase
46 ThreadPlanBase::~ThreadPlanBase() = default;
52 bool ThreadPlanBase::ValidatePlan(Stream *error) { return true; } in ValidatePlan()
54 bool ThreadPlanBase::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop()
60 Vote ThreadPlanBase::ShouldReportStop(Event *event_ptr) { in ShouldReportStop()
72 bool ThreadPlanBase::ShouldStop(Event *event_ptr) { in ShouldStop()
178 bool ThreadPlanBase::StopOthers() { return false; } in StopOthers()
180 StateType ThreadPlanBase::GetPlanRunState() { return eStateRunning; } in GetPlanRunState()
182 bool ThreadPlanBase::WillStop() { return true; } in WillStop()
184 bool ThreadPlanBase::DoWillResume(lldb::StateType resume_state, in DoWillResume()
[all …]
H A DThread.cpp1233 ThreadPlanSP thread_plan_sp(new ThreadPlanBase(*this)); in QueueBasePlan()
H A DProcess.cpp4764 stopper_base_plan_sp.reset(new ThreadPlanBase(*thread)); in RunThreadPlan()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanBase.h23 class ThreadPlanBase : public ThreadPlan {
26 ~ThreadPlanBase() override;
44 ThreadPlanBase(Thread &thread);
49 ThreadPlanBase(const ThreadPlanBase &) = delete;
50 const ThreadPlanBase &operator=(const ThreadPlanBase &) = delete;
H A DStopInfo.h22 friend class ThreadPlanBase; variable
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h221 class ThreadPlanBase; variable
/freebsd-13.1/lib/clang/liblldb/
H A DMakefile612 SRCS+= Target/ThreadPlanBase.cpp