Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Target/
DThreadPlanBase.h31 Vote ShouldReportStop(Event *event_ptr) override;
DThreadPlanStepRange.h33 Vote ShouldReportStop(Event *event_ptr) override;
DThreadPlanCallFunction.h41 Vote ShouldReportStop(Event *event_ptr) override;
DThreadList.h107 Vote ShouldReportStop(Event *event_ptr);
DThreadPlan.h375 virtual Vote ShouldReportStop(Event *event_ptr);
DThread.h231 Vote ShouldReportStop(Event *event_ptr);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
DThreadPlan.cpp78 Vote ThreadPlan::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() function in ThreadPlan
84 Vote prev_vote = prev_plan->ShouldReportStop(event_ptr); in ShouldReportStop()
DThreadPlanCallFunction.cpp237 Vote ThreadPlanCallFunction::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() function in ThreadPlanCallFunction
241 return ThreadPlan::ShouldReportStop(event_ptr); in ShouldReportStop()
DThreadPlanBase.cpp60 Vote ThreadPlanBase::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() function in ThreadPlanBase
DThreadList.cpp356 Vote ThreadList::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() function in ThreadList
373 const Vote vote = thread_sp->ShouldReportStop(event_ptr); in ShouldReportStop()
DThreadPlanStepRange.cpp67 Vote ThreadPlanStepRange::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() function in ThreadPlanStepRange
DThread.cpp957 Vote Thread::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() function in Thread
995 return GetPlans().GetCompletedPlan(false)->ShouldReportStop(event_ptr); in ShouldReportStop()
1001 thread_vote = plan_ptr->ShouldReportStop(event_ptr); in ShouldReportStop()
DProcess.cpp3419 Vote report_stop_vote = m_thread_list.ShouldReportStop(event_ptr); in ShouldBroadcastEvent()