Home
last modified time | relevance | path

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

12

/openbsd/gnu/llvm/lldb/source/Core/
H A DDebuggerEvents.cpp18 static const T *GetEventDataFromEventImpl(const Event *event_ptr) { in GetEventDataFromEventImpl() argument
19 if (event_ptr) in GetEventDataFromEventImpl()
20 if (const EventData *event_data = event_ptr->GetData()) in GetEventDataFromEventImpl()
22 return static_cast<const T *>(event_ptr->GetData()); in GetEventDataFromEventImpl()
48 ProgressEventData::GetEventDataFromEvent(const Event *event_ptr) { in GetEventDataFromEvent() argument
49 return GetEventDataFromEventImpl<ProgressEventData>(event_ptr); in GetEventDataFromEvent()
84 DiagnosticEventData::GetEventDataFromEvent(const Event *event_ptr) { in GetEventDataFromEvent() argument
85 return GetEventDataFromEventImpl<DiagnosticEventData>(event_ptr); in GetEventDataFromEvent()
98 SymbolChangeEventData::GetEventDataFromEvent(const Event *event_ptr) { in GetEventDataFromEvent() argument
99 return GetEventDataFromEventImpl<SymbolChangeEventData>(event_ptr); in GetEventDataFromEvent()
[all …]
/openbsd/gnu/llvm/lldb/source/Utility/
H A DEvent.cpp156 const void *EventDataBytes::GetBytesFromEvent(const Event *event_ptr) { in GetBytesFromEvent() argument
157 const EventDataBytes *e = GetEventDataFromEvent(event_ptr); in GetBytesFromEvent()
163 size_t EventDataBytes::GetByteSizeFromEvent(const Event *event_ptr) { in GetByteSizeFromEvent() argument
164 const EventDataBytes *e = GetEventDataFromEvent(event_ptr); in GetByteSizeFromEvent()
171 EventDataBytes::GetEventDataFromEvent(const Event *event_ptr) { in GetEventDataFromEvent() argument
172 if (event_ptr != nullptr) { in GetEventDataFromEvent()
173 const EventData *event_data = event_ptr->GetData(); in GetEventDataFromEvent()
246 if (event_ptr == nullptr) in GetEventDataFromEvent()
249 const EventData *event_data = event_ptr->GetData(); in GetEventDataFromEvent()
266 EventDataStructuredData::GetObjectFromEvent(const Event *event_ptr) { in GetObjectFromEvent() argument
[all …]
/openbsd/gnu/usr.bin/binutils/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 …]
/openbsd/gnu/llvm/lldb/source/Target/
H A DThreadPlanBase.cpp55 bool ThreadPlanBase::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop() argument
61 Vote ThreadPlanBase::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() argument
64 bool should_notify = stop_info_sp->ShouldNotify(event_ptr); in ShouldReportStop()
73 bool ThreadPlanBase::ShouldStop(Event *event_ptr) { in ShouldStop() argument
92 if (stop_info_sp->ShouldStopSynchronous(event_ptr)) { in ShouldStop()
109 if (stop_info_sp->ShouldNotify(event_ptr)) { in ShouldStop()
148 if (stop_info_sp->ShouldStop(event_ptr)) { in ShouldStop()
159 if (stop_info_sp->ShouldNotify(event_ptr)) in ShouldStop()
H A DStopInfo.cpp177 bool DoShouldNotify(Event *event_ptr) override { in DoShouldNotify() argument
247 bool ShouldStop(Event *event_ptr) override { in ShouldStop() argument
255 void PerformAction(Event *event_ptr) override { in PerformAction() argument
735 bool ShouldStop(Event *event_ptr) override { in ShouldStop() argument
867 bool ShouldStop(Event *event_ptr) override { in ShouldStop() argument
875 void PerformAction(Event *event_ptr) override { in PerformAction() argument
1065 bool ShouldStop(Event *event_ptr) override { in ShouldStop() argument
1214 bool ShouldStop(Event *event_ptr) override { in ShouldStop() argument
1216 return m_plan_sp->ShouldStop(event_ptr); in ShouldStop()
1218 return StopInfo::ShouldStop(event_ptr); in ShouldStop()
[all …]
H A DThreadPlan.cpp51 bool ThreadPlan::PlanExplainsStop(Event *event_ptr) { in PlanExplainsStop() argument
53 bool actual_value = DoPlanExplainsStop(event_ptr); in PlanExplainsStop()
79 Vote ThreadPlan::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() argument
85 Vote prev_vote = prev_plan->ShouldReportStop(event_ptr); in ShouldReportStop()
94 Vote ThreadPlan::ShouldReportRun(Event *event_ptr) { in ShouldReportRun() argument
98 return prev_plan->ShouldReportRun(event_ptr); in ShouldReportRun()
208 bool ThreadPlanNull::ShouldStop(Event *event_ptr) { in ShouldStop() argument
240 bool ThreadPlanNull::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop() argument
H A DThreadPlanStepOverBreakpoint.cpp50 bool ThreadPlanStepOverBreakpoint::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop() argument
100 bool ThreadPlanStepOverBreakpoint::ShouldStop(Event *event_ptr) { in ShouldStop() argument
101 return !ShouldAutoContinue(event_ptr); in ShouldStop()
166 bool ThreadPlanStepOverBreakpoint::ShouldAutoContinue(Event *event_ptr) { in ShouldAutoContinue() argument
H A DThreadPlanCallFunction.cpp244 Vote ThreadPlanCallFunction::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() argument
248 return ThreadPlan::ShouldReportStop(event_ptr); in ShouldReportStop()
251 bool ThreadPlanCallFunction::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop() argument
257 if (m_subplan_sp && m_subplan_sp->PlanExplainsStop(event_ptr)) { in DoPlanExplainsStop()
279 if (Process::ProcessEventData::GetInterruptedFromEvent(event_ptr)) { in DoPlanExplainsStop()
343 m_real_stop_info_sp->ShouldStopSynchronous(event_ptr)) { in DoPlanExplainsStop()
351 bool ThreadPlanCallFunction::ShouldStop(Event *event_ptr) { in ShouldStop() argument
355 DoPlanExplainsStop(event_ptr); in ShouldStop()
H A DThreadPlanPython.cpp73 bool ThreadPlanPython::ShouldStop(Event *event_ptr) { in ShouldStop() argument
84 m_implementation_sp, event_ptr, script_error); in ShouldStop()
111 bool ThreadPlanPython::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop() argument
122 m_implementation_sp, event_ptr, script_error); in DoPlanExplainsStop()
H A DThread.cpp173 if (event_ptr) { in GetEventDataFromEvent()
174 const EventData *event_data = event_ptr->GetData(); in GetEventDataFromEvent()
745 bool Thread::ShouldStop(Event *event_ptr) { in ShouldStop() argument
833 if (!current_plan->PlanExplainsStop(event_ptr)) { in ShouldStop()
842 if (plan_ptr->PlanExplainsStop(event_ptr)) { in ShouldStop()
845 should_stop = plan_ptr->ShouldStop(event_ptr); in ShouldStop()
885 should_stop = current_plan->ShouldStop(event_ptr); in ShouldStop()
979 Vote Thread::ShouldReportStop(Event *event_ptr) { in ShouldReportStop() argument
1022 if (plan_ptr->PlanExplainsStop(event_ptr)) { in ShouldReportStop()
1040 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
/openbsd/gnu/llvm/lldb/include/lldb/Utility/
H A DEvent.h51 virtual void DoOnRemoval(Event *event_ptr) {} in DoOnRemoval() argument
87 static const EventDataBytes *GetEventDataFromEvent(const Event *event_ptr);
89 static const void *GetBytesFromEvent(const Event *event_ptr);
91 static size_t GetByteSizeFromEvent(const Event *event_ptr);
122 void DoOnRemoval(Event *event_ptr) override { in DoOnRemoval() argument
160 GetEventDataFromEvent(const Event *event_ptr);
162 static lldb::ProcessSP GetProcessFromEvent(const Event *event_ptr);
164 static StructuredData::ObjectSP GetObjectFromEvent(const Event *event_ptr);
167 GetPluginFromEvent(const Event *event_ptr);
/openbsd/gnu/llvm/lldb/include/lldb/Target/
H A DThreadPlan.h365 bool PlanExplainsStop(Event *event_ptr);
367 virtual bool ShouldStop(Event *event_ptr) = 0;
375 virtual bool ShouldAutoContinue(Event *event_ptr) { return false; } in ShouldAutoContinue() argument
380 virtual Vote ShouldReportStop(Event *event_ptr);
382 Vote ShouldReportRun(Event *event_ptr);
497 virtual bool DoPlanExplainsStop(Event *event_ptr) = 0;
580 bool ShouldStop(Event *event_ptr) override;
593 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()
160 virtual void PerformAction(Event *event_ptr) {} in PerformAction() argument
162 virtual bool DoShouldNotify(Event *event_ptr) { return false; } in DoShouldNotify() argument
171 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.h41 bool ShouldStop(Event *event_ptr) override;
56 bool DoPlanExplainsStop(Event *event_ptr) override;
/openbsd/gnu/llvm/lldb/source/API/
H A DSBEvent.cpp38 SBEvent::SBEvent(Event *event_ptr) : m_opaque_ptr(event_ptr) { in SBEvent() argument
39 LLDB_INSTRUMENT_VA(this, event_ptr); in SBEvent()
149 void SBEvent::reset(Event *event_ptr) { in reset() argument
150 m_opaque_ptr = event_ptr; in reset()
/openbsd/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.h40 bool ShouldStop(Event *event_ptr) override;
55 bool DoPlanExplainsStop(Event *event_ptr) override;
93 bool ShouldStop(Event *event_ptr) override;
106 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DAppleThreadPlanStepThroughObjCTrampoline.cpp105 Event *event_ptr) { in DoPlanExplainsStop() argument
116 bool AppleThreadPlanStepThroughObjCTrampoline::ShouldStop(Event *event_ptr) { in ShouldStop() argument
309 AppleThreadPlanStepThroughDirectDispatch::DoPlanExplainsStop(Event *event_ptr) { in DoPlanExplainsStop() argument
310 if (ThreadPlanStepOut::DoPlanExplainsStop(event_ptr)) in DoPlanExplainsStop()
359 bool AppleThreadPlanStepThroughDirectDispatch::ShouldStop(Event *event_ptr) { in ShouldStop() argument
364 const bool step_out_should_stop = ThreadPlanStepOut::ShouldStop(event_ptr); in ShouldStop()
/openbsd/gnu/llvm/lldb/include/lldb/Core/
H A DDebuggerEvents.h34 static const ProgressEventData *GetEventDataFromEvent(const Event *event_ptr);
76 GetEventDataFromEvent(const Event *event_ptr);
96 GetEventDataFromEvent(const Event *event_ptr);
98 void DoOnRemoval(Event *event_ptr) override;

12