Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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.h107 Vote ShouldReportStop(Event *event_ptr);
H A DThreadPlan.h380 virtual Vote ShouldReportStop(Event *event_ptr);
H A DThread.h230 Vote ShouldReportStop(Event *event_ptr);
/openbsd-src/gnu/llvm/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 DThreadPlanBase.cpp61 Vote ThreadPlanBase::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() function in ThreadPlanBase
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 DThreadList.cpp376 Vote ThreadList::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() function in ThreadList
401 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.cpp979 Vote Thread::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() function in Thread
1017 return GetPlans().GetCompletedPlan(false)->ShouldReportStop(event_ptr); in ShouldReportStop()
1023 thread_vote = plan_ptr->ShouldReportStop(event_ptr); in ShouldReportStop()
H A DProcess.cpp3468 Vote report_stop_vote = m_thread_list.ShouldReportStop(event_ptr); in ShouldBroadcastEvent()