Home
last modified time | relevance | path

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

12

/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DEvent.cpp165 const void *EventDataBytes::GetBytesFromEvent(const Event *event_ptr) { in GetBytesFromEvent() argument
166 const EventDataBytes *e = GetEventDataFromEvent(event_ptr); in GetBytesFromEvent()
172 size_t EventDataBytes::GetByteSizeFromEvent(const Event *event_ptr) { in GetByteSizeFromEvent() argument
173 const EventDataBytes *e = GetEventDataFromEvent(event_ptr); in GetByteSizeFromEvent()
180 EventDataBytes::GetEventDataFromEvent(const Event *event_ptr) { in GetEventDataFromEvent() argument
181 if (event_ptr != nullptr) { in GetEventDataFromEvent()
182 const EventData *event_data = event_ptr->GetData(); in GetEventDataFromEvent()
261 if (event_ptr == nullptr) in GetEventDataFromEvent()
264 const EventData *event_data = event_ptr->GetData(); in GetEventDataFromEvent()
281 EventDataStructuredData::GetObjectFromEvent(const Event *event_ptr) { in GetObjectFromEvent() argument
[all …]
/freebsd-12.1/contrib/gdb/gdb/
H A Devent-loop.c238 event_ptr->next_event = NULL; in async_queue_event()
240 event_queue.first_event = event_ptr; in async_queue_event()
251 event_queue.last_event = event_ptr; in async_queue_event()
283 gdb_event *event_ptr, *prev_ptr; in process_event() local
300 for (event_ptr = event_queue.first_event; event_ptr != NULL; in process_event()
301 event_ptr = event_ptr->next_event) in process_event()
305 proc = event_ptr->proc; in process_event()
306 fd = event_ptr->fd; in process_event()
318 if (event_ptr->next_event == NULL) in process_event()
331 xfree (event_ptr); in process_event()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DThreadPlanBase.cpp57 bool ThreadPlanBase::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop() argument
63 Vote ThreadPlanBase::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() argument
66 bool should_notify = stop_info_sp->ShouldNotify(event_ptr); in ShouldReportStop()
75 bool ThreadPlanBase::ShouldStop(Event *event_ptr) { in ShouldStop() argument
94 if (stop_info_sp->ShouldStopSynchronous(event_ptr)) { in ShouldStop()
111 if (stop_info_sp->ShouldNotify(event_ptr)) { in ShouldStop()
150 if (stop_info_sp->ShouldStop(event_ptr)) { in ShouldStop()
161 if (stop_info_sp->ShouldNotify(event_ptr)) in ShouldStop()
H A DThreadPlan.cpp41 bool ThreadPlan::PlanExplainsStop(Event *event_ptr) { in PlanExplainsStop() argument
43 bool actual_value = DoPlanExplainsStop(event_ptr); in PlanExplainsStop()
69 Vote ThreadPlan::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() argument
75 Vote prev_vote = prev_plan->ShouldReportStop(event_ptr); in ShouldReportStop()
84 Vote ThreadPlan::ShouldReportRun(Event *event_ptr) { in ShouldReportRun() argument
88 return prev_plan->ShouldReportRun(event_ptr); in ShouldReportRun()
195 bool ThreadPlanNull::ShouldStop(Event *event_ptr) { in ShouldStop() argument
229 bool ThreadPlanNull::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop() argument
H A DStopInfo.cpp167 bool DoShouldNotify(Event *event_ptr) override { in DoShouldNotify() argument
253 bool ShouldStop(Event *event_ptr) override { in ShouldStop() argument
261 void PerformAction(Event *event_ptr) override { in PerformAction() argument
685 bool ShouldStop(Event *event_ptr) override { in ShouldStop() argument
693 void PerformAction(Event *event_ptr) override { in PerformAction() argument
938 bool ShouldStop(Event *event_ptr) override { in ShouldStop() argument
1069 bool ShouldStop(Event *event_ptr) override { in ShouldStop() argument
1071 return m_plan_sp->ShouldStop(event_ptr); in ShouldStop()
1073 return StopInfo::ShouldStop(event_ptr); in ShouldStop()
1093 bool ShouldStop(Event *event_ptr) override { in ShouldStop() argument
[all …]
H A DThreadPlanCallFunction.cpp266 Vote ThreadPlanCallFunction::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() argument
270 return ThreadPlan::ShouldReportStop(event_ptr); in ShouldReportStop()
273 bool ThreadPlanCallFunction::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop() argument
280 if (m_subplan_sp && m_subplan_sp->PlanExplainsStop(event_ptr)) { in DoPlanExplainsStop()
303 if (Process::ProcessEventData::GetInterruptedFromEvent(event_ptr)) { in DoPlanExplainsStop()
372 m_real_stop_info_sp->ShouldStopSynchronous(event_ptr)) { in DoPlanExplainsStop()
380 bool ThreadPlanCallFunction::ShouldStop(Event *event_ptr) { in ShouldStop() argument
384 DoPlanExplainsStop(event_ptr); in ShouldStop()
H A DThreadPlanStepOverBreakpoint.cpp52 bool ThreadPlanStepOverBreakpoint::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop() argument
113 bool ThreadPlanStepOverBreakpoint::ShouldStop(Event *event_ptr) { in ShouldStop() argument
114 return !ShouldAutoContinue(event_ptr); in ShouldStop()
184 bool ThreadPlanStepOverBreakpoint::ShouldAutoContinue(Event *event_ptr) { in ShouldAutoContinue() argument
H A DThreadPlanPython.cpp75 bool ThreadPlanPython::ShouldStop(Event *event_ptr) { in ShouldStop() argument
91 m_implementation_sp, event_ptr, script_error); in ShouldStop()
123 bool ThreadPlanPython::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop() argument
139 m_implementation_sp, event_ptr, script_error); in DoPlanExplainsStop()
H A DThread.cpp197 if (event_ptr) { in GetEventDataFromEvent()
198 const EventData *event_data = event_ptr->GetData(); in GetEventDataFromEvent()
719 bool Thread::ShouldStop(Event *event_ptr) { in ShouldStop() argument
803 if (!current_plan->PlanExplainsStop(event_ptr)) { in ShouldStop()
812 if (plan_ptr->PlanExplainsStop(event_ptr)) { in ShouldStop()
813 should_stop = plan_ptr->ShouldStop(event_ptr); in ShouldStop()
852 should_stop = current_plan->ShouldStop(event_ptr); in ShouldStop()
942 Vote Thread::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() argument
985 if (plan_ptr->PlanExplainsStop(event_ptr)) { in ShouldReportStop()
1003 Vote Thread::ShouldReportRun(Event *event_ptr) { in ShouldReportRun() argument
[all …]
H A DThreadPlanCallOnFunctionExit.cpp62 bool ThreadPlanCallOnFunctionExit::ShouldStop(Event *event_ptr) { in ShouldStop() argument
89 bool ThreadPlanCallOnFunctionExit::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop() argument
H A DThreadPlanStepOut.cpp249 bool ThreadPlanStepOut::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop() argument
317 bool ThreadPlanStepOut::ShouldStop(Event *event_ptr) { in ShouldStop() argument
333 return m_step_out_to_inline_plan_sp->ShouldStop(event_ptr); in ShouldStop()
338 return m_step_through_inline_plan_sp->ShouldStop(event_ptr); in ShouldStop()
343 return m_step_out_further_plan_sp->ShouldStop(event_ptr); in ShouldStop()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DEvent.h54 virtual void DoOnRemoval(Event *event_ptr) {} in DoOnRemoval() argument
97 static const EventDataBytes *GetEventDataFromEvent(const Event *event_ptr);
99 static const void *GetBytesFromEvent(const Event *event_ptr);
101 static size_t GetByteSizeFromEvent(const Event *event_ptr);
131 void DoOnRemoval(Event *event_ptr) override { in DoOnRemoval() argument
177 GetEventDataFromEvent(const Event *event_ptr);
179 static lldb::ProcessSP GetProcessFromEvent(const Event *event_ptr);
181 static StructuredData::ObjectSP GetObjectFromEvent(const Event *event_ptr);
184 GetPluginFromEvent(const Event *event_ptr);
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DThreadPlan.h424 bool PlanExplainsStop(Event *event_ptr);
426 virtual bool ShouldStop(Event *event_ptr) = 0;
428 virtual bool ShouldAutoContinue(Event *event_ptr) { return false; } in ShouldAutoContinue() argument
433 virtual Vote ShouldReportStop(Event *event_ptr);
435 virtual Vote ShouldReportRun(Event *event_ptr);
568 virtual bool DoPlanExplainsStop(Event *event_ptr) = 0;
646 bool ShouldStop(Event *event_ptr) override;
659 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()
147 virtual void PerformAction(Event *event_ptr) {} in PerformAction() argument
149 virtual bool DoShouldNotify(Event *event_ptr) { return false; } in DoShouldNotify() argument
158 virtual bool ShouldStop(Event *event_ptr) { return true; } in ShouldStop() argument
H A DThreadPlanBase.h33 bool ShouldStop(Event *event_ptr) override;
34 Vote ShouldReportStop(Event *event_ptr) override;
46 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DThreadPlanStepOverBreakpoint.h26 bool ShouldStop(Event *event_ptr) override;
34 bool ShouldAutoContinue(Event *event_ptr) override;
40 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DThreadPlanCallFunction.h40 bool ShouldStop(Event *event_ptr) override;
42 Vote ShouldReportStop(Event *event_ptr) override;
103 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DThreadList.h106 bool ShouldStop(Event *event_ptr);
108 Vote ShouldReportStop(Event *event_ptr);
110 Vote ShouldReportRun(Event *event_ptr);
H A DThreadPlanCallOnFunctionExit.h41 bool ShouldStop(Event *event_ptr) override;
46 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DThreadPlanPython.h42 bool ShouldStop(Event *event_ptr) override;
55 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DThreadPlanStepOverRange.h31 bool ShouldStop(Event *event_ptr) override;
34 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DThread.h103 static const ThreadEventData *GetEventDataFromEvent(const Event *event_ptr);
105 static lldb::ThreadSP GetThreadFromEvent(const Event *event_ptr);
107 static StackID GetStackIDFromEvent(const Event *event_ptr);
109 static lldb::StackFrameSP GetStackFrameFromEvent(const Event *event_ptr);
236 bool ShouldStop(Event *event_ptr);
238 Vote ShouldReportStop(Event *event_ptr);
240 Vote ShouldReportRun(Event *event_ptr);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DPOSIXStopInfo.cpp26 bool POSIXLimboStopInfo::ShouldStop(Event *event_ptr) { return false; } in ShouldStop() argument
28 bool POSIXLimboStopInfo::ShouldNotify(Event *event_ptr) { return false; } in ShouldNotify() argument
43 bool POSIXNewThreadStopInfo::ShouldStop(Event *event_ptr) { return false; } in ShouldStop() argument
45 bool POSIXNewThreadStopInfo::ShouldNotify(Event *event_ptr) { return false; } in ShouldNotify() argument
H A DPOSIXStopInfo.h42 bool ShouldStop(lldb_private::Event *event_ptr);
44 bool ShouldNotify(lldb_private::Event *event_ptr);
62 bool ShouldStop(lldb_private::Event *event_ptr);
64 bool ShouldNotify(lldb_private::Event *event_ptr);
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBEvent.cpp34 SBEvent::SBEvent(Event *event_ptr) : m_event_sp(), m_opaque_ptr(event_ptr) {} in SBEvent() argument
143 void SBEvent::reset(Event *event_ptr) { in reset() argument
144 m_opaque_ptr = event_ptr; in reset()

12