Home
last modified time | relevance | path

Searched refs:ShouldReportStop (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanBase.h31 Vote ShouldReportStop(Event *event_ptr) override;
H A DThreadPlanStepRange.h33 Vote ShouldReportStop(Event *event_ptr) override;
H A DThreadPlanCallFunction.h41 Vote ShouldReportStop(Event *event_ptr) override;
H A DThreadList.h108 Vote ShouldReportStop(Event *event_ptr);
H A DThreadPlan.h380 virtual Vote ShouldReportStop(Event *event_ptr);
H A DThread.h230 Vote ShouldReportStop(Event *event_ptr);
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlan.cpp79 Vote ThreadPlan::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() function in ThreadPlan
85 Vote prev_vote = prev_plan->ShouldReportStop(event_ptr); in ShouldReportStop()
H A DThreadPlanCallFunction.cpp244 Vote ThreadPlanCallFunction::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() function in ThreadPlanCallFunction
248 return ThreadPlan::ShouldReportStop(event_ptr); in ShouldReportStop()
H A DThreadPlanBase.cpp61 Vote ThreadPlanBase::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() function in ThreadPlanBase
H A DThreadList.cpp375 Vote ThreadList::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() function in ThreadList
400 const Vote vote = thread_sp->ShouldReportStop(event_ptr); in ShouldReportStop()
H A DThreadPlanStepRange.cpp68 Vote ThreadPlanStepRange::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() function in ThreadPlanStepRange
H A DThread.cpp963 Vote Thread::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() function in Thread
1001 return GetPlans().GetCompletedPlan(false)->ShouldReportStop(event_ptr); in ShouldReportStop()
1007 thread_vote = plan_ptr->ShouldReportStop(event_ptr); in ShouldReportStop()
H A DProcess.cpp3694 Vote report_stop_vote = m_thread_list.ShouldReportStop(event_ptr); in ShouldBroadcastEvent()