Home
last modified time | relevance | path

Searched refs:event_ptr (Results 1 – 25 of 47) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DEvent.cpp158 const void *EventDataBytes::GetBytesFromEvent(const Event *event_ptr) { in GetBytesFromEvent() argument
159 const EventDataBytes *e = GetEventDataFromEvent(event_ptr); in GetBytesFromEvent()
165 size_t EventDataBytes::GetByteSizeFromEvent(const Event *event_ptr) { in GetByteSizeFromEvent() argument
166 const EventDataBytes *e = GetEventDataFromEvent(event_ptr); in GetByteSizeFromEvent()
173 EventDataBytes::GetEventDataFromEvent(const Event *event_ptr) { in GetEventDataFromEvent() argument
174 if (event_ptr != nullptr) { in GetEventDataFromEvent()
175 const EventData *event_data = event_ptr->GetData(); in GetEventDataFromEvent()
248 if (event_ptr == nullptr) in GetEventDataFromEvent()
251 const EventData *event_data = event_ptr->GetData(); in GetEventDataFromEvent()
268 EventDataStructuredData::GetObjectFromEvent(const Event *event_ptr) { in GetObjectFromEvent() argument
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanBase.cpp54 bool ThreadPlanBase::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop() argument
60 Vote ThreadPlanBase::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() argument
63 bool should_notify = stop_info_sp->ShouldNotify(event_ptr); in ShouldReportStop()
72 bool ThreadPlanBase::ShouldStop(Event *event_ptr) { in ShouldStop() argument
91 if (stop_info_sp->ShouldStopSynchronous(event_ptr)) { in ShouldStop()
108 if (stop_info_sp->ShouldNotify(event_ptr)) { in ShouldStop()
147 if (stop_info_sp->ShouldStop(event_ptr)) { in ShouldStop()
158 if (stop_info_sp->ShouldNotify(event_ptr)) in ShouldStop()
H A DThreadPlan.cpp50 bool ThreadPlan::PlanExplainsStop(Event *event_ptr) { in PlanExplainsStop() argument
52 bool actual_value = DoPlanExplainsStop(event_ptr); in PlanExplainsStop()
78 Vote ThreadPlan::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() argument
84 Vote prev_vote = prev_plan->ShouldReportStop(event_ptr); in ShouldReportStop()
93 Vote ThreadPlan::ShouldReportRun(Event *event_ptr) { in ShouldReportRun() argument
97 return prev_plan->ShouldReportRun(event_ptr); in ShouldReportRun()
207 bool ThreadPlanNull::ShouldStop(Event *event_ptr) { in ShouldStop() argument
239 bool ThreadPlanNull::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop() argument
H A DStopInfo.cpp164 bool DoShouldNotify(Event *event_ptr) override { in DoShouldNotify() argument
250 bool ShouldStop(Event *event_ptr) override { in ShouldStop() argument
258 void PerformAction(Event *event_ptr) override { in PerformAction() argument
713 bool ShouldStop(Event *event_ptr) override { in ShouldStop() argument
721 void PerformAction(Event *event_ptr) override { in PerformAction() argument
961 bool ShouldStop(Event *event_ptr) override { in ShouldStop() argument
1110 bool ShouldStop(Event *event_ptr) override { in ShouldStop() argument
1112 return m_plan_sp->ShouldStop(event_ptr); in ShouldStop()
1114 return StopInfo::ShouldStop(event_ptr); in ShouldStop()
1132 bool ShouldStop(Event *event_ptr) override { in ShouldStop() argument
[all …]
H A DThreadPlanCallFunction.cpp237 Vote ThreadPlanCallFunction::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() argument
241 return ThreadPlan::ShouldReportStop(event_ptr); in ShouldReportStop()
244 bool ThreadPlanCallFunction::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop() argument
251 if (m_subplan_sp && m_subplan_sp->PlanExplainsStop(event_ptr)) { in DoPlanExplainsStop()
273 if (Process::ProcessEventData::GetInterruptedFromEvent(event_ptr)) { in DoPlanExplainsStop()
337 m_real_stop_info_sp->ShouldStopSynchronous(event_ptr)) { in DoPlanExplainsStop()
345 bool ThreadPlanCallFunction::ShouldStop(Event *event_ptr) { in ShouldStop() argument
349 DoPlanExplainsStop(event_ptr); in ShouldStop()
H A DThreadPlanStepOverBreakpoint.cpp49 bool ThreadPlanStepOverBreakpoint::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop() argument
99 bool ThreadPlanStepOverBreakpoint::ShouldStop(Event *event_ptr) { in ShouldStop() argument
100 return !ShouldAutoContinue(event_ptr); in ShouldStop()
167 bool ThreadPlanStepOverBreakpoint::ShouldAutoContinue(Event *event_ptr) { in ShouldAutoContinue() argument
H A DThreadPlanPython.cpp77 bool ThreadPlanPython::ShouldStop(Event *event_ptr) { in ShouldStop() argument
88 m_implementation_sp, event_ptr, script_error); in ShouldStop()
115 bool ThreadPlanPython::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop() argument
126 m_implementation_sp, event_ptr, script_error); in DoPlanExplainsStop()
H A DThread.cpp171 if (event_ptr) { in GetEventDataFromEvent()
172 const EventData *event_data = event_ptr->GetData(); in GetEventDataFromEvent()
731 bool Thread::ShouldStop(Event *event_ptr) { in ShouldStop() argument
816 if (!current_plan->PlanExplainsStop(event_ptr)) { in ShouldStop()
825 if (plan_ptr->PlanExplainsStop(event_ptr)) { in ShouldStop()
828 should_stop = plan_ptr->ShouldStop(event_ptr); in ShouldStop()
863 should_stop = current_plan->ShouldStop(event_ptr); in ShouldStop()
957 Vote Thread::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() argument
1000 if (plan_ptr->PlanExplainsStop(event_ptr)) { in ShouldReportStop()
1018 Vote Thread::ShouldReportRun(Event *event_ptr) { in ShouldReportRun() argument
[all …]
H A DThreadPlanCallOnFunctionExit.cpp59 bool ThreadPlanCallOnFunctionExit::ShouldStop(Event *event_ptr) { in ShouldStop() argument
86 bool ThreadPlanCallOnFunctionExit::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop() argument
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/
H A DEvent.h49 virtual void DoOnRemoval(Event *event_ptr) {} in DoOnRemoval() argument
85 static const EventDataBytes *GetEventDataFromEvent(const Event *event_ptr);
87 static const void *GetBytesFromEvent(const Event *event_ptr);
89 static size_t GetByteSizeFromEvent(const Event *event_ptr);
120 void DoOnRemoval(Event *event_ptr) override { in DoOnRemoval() argument
158 GetEventDataFromEvent(const Event *event_ptr);
160 static lldb::ProcessSP GetProcessFromEvent(const Event *event_ptr);
162 static StructuredData::ObjectSP GetObjectFromEvent(const Event *event_ptr);
165 GetPluginFromEvent(const Event *event_ptr);
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlan.h360 bool PlanExplainsStop(Event *event_ptr);
362 virtual bool ShouldStop(Event *event_ptr) = 0;
370 virtual bool ShouldAutoContinue(Event *event_ptr) { return false; } in ShouldAutoContinue() argument
375 virtual Vote ShouldReportStop(Event *event_ptr);
377 Vote ShouldReportRun(Event *event_ptr);
490 virtual bool DoPlanExplainsStop(Event *event_ptr) = 0;
573 bool ShouldStop(Event *event_ptr) override;
586 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DStopInfo.h53 virtual bool ShouldStopSynchronous(Event *event_ptr) { return true; } in ShouldStopSynchronous() argument
60 virtual bool ShouldNotify(Event *event_ptr) { in ShouldNotify() argument
62 return DoShouldNotify(event_ptr); in ShouldNotify()
150 virtual void PerformAction(Event *event_ptr) {} in PerformAction() argument
152 virtual bool DoShouldNotify(Event *event_ptr) { return false; } in DoShouldNotify() argument
161 virtual bool ShouldStop(Event *event_ptr) { return true; } in ShouldStop() argument
H A DThreadPlanBase.h30 bool ShouldStop(Event *event_ptr) override;
31 Vote ShouldReportStop(Event *event_ptr) override;
43 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DThreadPlanStepOverBreakpoint.h25 bool ShouldStop(Event *event_ptr) override;
33 bool ShouldAutoContinue(Event *event_ptr) override;
39 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DThreadPlanCallFunction.h39 bool ShouldStop(Event *event_ptr) override;
41 Vote ShouldReportStop(Event *event_ptr) override;
102 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DThreadList.h105 bool ShouldStop(Event *event_ptr);
107 Vote ShouldReportStop(Event *event_ptr);
109 Vote ShouldReportRun(Event *event_ptr);
H A DThreadPlanCallOnFunctionExit.h38 bool ShouldStop(Event *event_ptr) override;
43 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DThreadPlanStepOverRange.h30 bool ShouldStop(Event *event_ptr) override;
33 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DThreadPlanPython.h42 bool ShouldStop(Event *event_ptr) override;
57 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DThreadPlanStepInstruction.h27 bool ShouldStop(Event *event_ptr) override;
35 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DThreadPlanRunToAddress.h36 bool ShouldStop(Event *event_ptr) override;
49 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DThreadPlanStepThrough.h23 bool ShouldStop(Event *event_ptr) override;
31 bool DoPlanExplainsStop(Event *event_ptr) override;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.h39 bool ShouldStop(Event *event_ptr) override;
54 bool DoPlanExplainsStop(Event *event_ptr) override;
85 bool ShouldStop(Event *event_ptr) override;
98 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DAppleThreadPlanStepThroughObjCTrampoline.cpp101 Event *event_ptr) { in DoPlanExplainsStop() argument
112 bool AppleThreadPlanStepThroughObjCTrampoline::ShouldStop(Event *event_ptr) { in ShouldStop() argument
288 AppleThreadPlanStepThroughDirectDispatch::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop() argument
289 if (ThreadPlanStepOut::DoPlanExplainsStop(event_ptr)) in DoPlanExplainsStop()
338 bool AppleThreadPlanStepThroughDirectDispatch::ShouldStop(Event *event_ptr) { in ShouldStop() argument
343 const bool step_out_should_stop = ThreadPlanStepOut::ShouldStop(event_ptr); in ShouldStop()
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBEvent.cpp39 SBEvent::SBEvent(Event *event_ptr) : m_event_sp(), m_opaque_ptr(event_ptr) { in SBEvent() argument
40 LLDB_RECORD_CONSTRUCTOR(SBEvent, (lldb_private::Event *), event_ptr); in SBEvent()
155 void SBEvent::reset(Event *event_ptr) { in reset() argument
156 m_opaque_ptr = event_ptr; in reset()

12