Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanBase.cpp30 ThreadPlanBase::ThreadPlanBase(Thread &thread) in ThreadPlanBase() function in ThreadPlanBase
47 ThreadPlanBase::~ThreadPlanBase() = default;
49 void ThreadPlanBase::GetDescription(Stream *s, lldb::DescriptionLevel level) { in GetDescription()
53 bool ThreadPlanBase::ValidatePlan(Stream *error) { return true; } in ValidatePlan()
55 bool ThreadPlanBase::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop()
61 Vote ThreadPlanBase::ShouldReportStop(Event *event_ptr) { in ShouldReportStop()
73 bool ThreadPlanBase::ShouldStop(Event *event_ptr) { in ShouldStop()
179 bool ThreadPlanBase::StopOthers() { return false; } in StopOthers()
181 StateType ThreadPlanBase::GetPlanRunState() { return eStateRunning; } in GetPlanRunState()
183 bool ThreadPlanBase::WillStop() { return true; } in WillStop()
[all …]
H A DThread.cpp1239 ThreadPlanSP thread_plan_sp(new ThreadPlanBase(*this)); in QueueBasePlan()
H A DProcess.cpp5062 stopper_base_plan_sp.reset(new ThreadPlanBase(*thread)); in RunThreadPlan()
/freebsd/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/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h240 class ThreadPlanBase; variable
/freebsd/lib/clang/liblldb/
H A DMakefile668 SRCS+= Target/ThreadPlanBase.cpp