Searched refs:event_ptr (Results 26 - 47 of 47) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanStepOut.h31 bool ShouldStop(Event *event_ptr) override;
48 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DThreadPlanStepInRange.h40 bool ShouldStop(Event *event_ptr) override;
66 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DThread.h100 static const ThreadEventData *GetEventDataFromEvent(const Event *event_ptr);
102 static lldb::ThreadSP GetThreadFromEvent(const Event *event_ptr);
104 static StackID GetStackIDFromEvent(const Event *event_ptr);
106 static lldb::StackFrameSP GetStackFrameFromEvent(const Event *event_ptr);
228 bool ShouldStop(Event *event_ptr);
230 Vote ShouldReportStop(Event *event_ptr);
232 Vote ShouldReportRun(Event *event_ptr);
H A DProcess.h455 virtual bool ShouldStop(Event *event_ptr, bool &found_valid_stopinfo);
457 void DoOnRemoval(Event *event_ptr) override;
460 GetEventDataFromEvent(const Event *event_ptr);
462 static lldb::ProcessSP GetProcessFromEvent(const Event *event_ptr);
464 static lldb::StateType GetStateFromEvent(const Event *event_ptr);
466 static bool GetRestartedFromEvent(const Event *event_ptr);
468 static size_t GetNumRestartedReasons(const Event *event_ptr);
470 static const char *GetRestartedReasonAtIndex(const Event *event_ptr,
473 static void AddRestartedReason(Event *event_ptr, const char *reason);
475 static void SetRestartedInEvent(Event *event_ptr, boo
[all...]
H A DTarget.h474 static const TargetEventData *GetEventDataFromEvent(const Event *event_ptr);
476 static lldb::TargetSP GetTargetFromEvent(const Event *event_ptr);
478 static ModuleList GetModuleListFromEvent(const Event *event_ptr);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanCallFunction.cpp237 Vote ThreadPlanCallFunction::ShouldReportStop(Event *event_ptr) { argument
241 return ThreadPlan::ShouldReportStop(event_ptr);
244 bool ThreadPlanCallFunction::DoPlanExplainsStop(Event *event_ptr) { argument
251 if (m_subplan_sp && m_subplan_sp->PlanExplainsStop(event_ptr)) {
273 if (Process::ProcessEventData::GetInterruptedFromEvent(event_ptr)) {
337 m_real_stop_info_sp->ShouldStopSynchronous(event_ptr)) {
345 bool ThreadPlanCallFunction::ShouldStop(Event *event_ptr) { argument
349 DoPlanExplainsStop(event_ptr);
H A DStopInfo.cpp135 bool ShouldStopSynchronous(Event *event_ptr) override {
144 StoppointCallbackContext context(event_ptr, exe_ctx, true);
164 bool DoShouldNotify(Event *event_ptr) override {
250 bool ShouldStop(Event *event_ptr) override {
258 void PerformAction(Event *event_ptr) override {
371 StoppointCallbackContext context(event_ptr, exe_ctx, false);
640 bool ShouldStopSynchronous(Event *event_ptr) override {
659 StoppointCallbackContext context(event_ptr, exe_ctx, true);
676 bool ShouldStop(Event *event_ptr) override {
684 void PerformAction(Event *event_ptr) overrid
[all...]
H A DThreadPlanStepOut.cpp268 bool ThreadPlanStepOut::DoPlanExplainsStop(Event *event_ptr) { argument
336 bool ThreadPlanStepOut::ShouldStop(Event *event_ptr) { argument
352 return m_step_out_to_inline_plan_sp->ShouldStop(event_ptr);
357 return m_step_through_inline_plan_sp->ShouldStop(event_ptr);
362 return m_step_out_further_plan_sp->ShouldStop(event_ptr);
H A DThread.cpp176 Thread::ThreadEventData::GetEventDataFromEvent(const Event *event_ptr) { argument
177 if (event_ptr) {
178 const EventData *event_data = event_ptr->GetData();
181 return static_cast<const ThreadEventData *>(event_ptr->GetData());
186 ThreadSP Thread::ThreadEventData::GetThreadFromEvent(const Event *event_ptr) { argument
188 const ThreadEventData *event_data = GetEventDataFromEvent(event_ptr);
194 StackID Thread::ThreadEventData::GetStackIDFromEvent(const Event *event_ptr) { argument
196 const ThreadEventData *event_data = GetEventDataFromEvent(event_ptr);
203 Thread::ThreadEventData::GetStackFrameFromEvent(const Event *event_ptr) { argument
204 const ThreadEventData *event_data = GetEventDataFromEvent(event_ptr);
738 ShouldStop(Event *event_ptr) argument
961 ShouldReportStop(Event *event_ptr) argument
1022 ShouldReportRun(Event *event_ptr) argument
[all...]
H A DThreadPlanStepInstruction.cpp88 bool ThreadPlanStepInstruction::DoPlanExplainsStop(Event *event_ptr) { argument
127 bool ThreadPlanStepInstruction::ShouldStop(Event *event_ptr) { argument
H A DThreadPlanStepThrough.cpp153 bool ThreadPlanStepThrough::DoPlanExplainsStop(Event *event_ptr) { argument
161 bool ThreadPlanStepThrough::ShouldStop(Event *event_ptr) { argument
H A DThreadList.cpp225 bool ThreadList::ShouldStop(Event *event_ptr) { argument
282 if (Process::ProcessEventData::GetInterruptedFromEvent(event_ptr)) {
330 const bool thread_should_stop = thread_sp->ShouldStop(event_ptr);
356 Vote ThreadList::ShouldReportStop(Event *event_ptr) { argument
373 const Vote vote = thread_sp->ShouldReportStop(event_ptr);
408 Vote ThreadList::ShouldReportRun(Event *event_ptr) { argument
423 switch ((*pos)->ShouldReportRun(event_ptr)) {
H A DProcess.cpp1093 Event *event_ptr; local
1094 event_ptr = m_listener_sp->PeekAtNextEventForBroadcasterWithType(
1097 if (event_ptr) {
1098 LLDB_LOGF(log, "Process::%s (event_ptr) => %s", __FUNCTION__,
1099 StateAsCString(ProcessEventData::GetStateFromEvent(event_ptr)));
1104 return event_ptr;
3436 bool Process::ShouldBroadcastEvent(Event *event_ptr) {
3438 Process::ProcessEventData::GetStateFromEvent(event_ptr);
3490 switch (m_thread_list.ShouldReportRun(event_ptr)) {
3513 if (ProcessEventData::GetInterruptedFromEvent(event_ptr)) {
[all...]
H A DThreadPlanRunToAddress.cpp153 bool ThreadPlanRunToAddress::DoPlanExplainsStop(Event *event_ptr) { argument
157 bool ThreadPlanRunToAddress::ShouldStop(Event *event_ptr) { argument
H A DThreadPlanStepOverRange.cpp126 bool ThreadPlanStepOverRange::ShouldStop(Event *event_ptr) { argument
336 bool ThreadPlanStepOverRange::DoPlanExplainsStop(Event *event_ptr) { argument
H A DThreadPlanStepUntil.cpp252 bool ThreadPlanStepUntil::DoPlanExplainsStop(Event *event_ptr) { argument
259 bool ThreadPlanStepUntil::ShouldStop(Event *event_ptr) { argument
H A DThreadPlanStepInRange.cpp143 bool ThreadPlanStepInRange::ShouldStop(Event *event_ptr) { argument
435 bool ThreadPlanStepInRange::DoPlanExplainsStop(Event *event_ptr) { argument
H A DThreadPlanStepRange.cpp67 Vote ThreadPlanStepRange::ShouldReportStop(Event *event_ptr) { argument
H A DTarget.cpp4087 Target::TargetEventData::GetEventDataFromEvent(const Event *event_ptr) { argument
4088 if (event_ptr) {
4089 const EventData *event_data = event_ptr->GetData();
4092 return static_cast<const TargetEventData *>(event_ptr->GetData());
4097 TargetSP Target::TargetEventData::GetTargetFromEvent(const Event *event_ptr) { argument
4099 const TargetEventData *event_data = GetEventDataFromEvent(event_ptr);
4106 Target::TargetEventData::GetModuleListFromEvent(const Event *event_ptr) { argument
4108 const TargetEventData *event_data = GetEventDataFromEvent(event_ptr);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.cpp103 Event *event_ptr) {
114 bool AppleThreadPlanStepThroughObjCTrampoline::ShouldStop(Event *event_ptr) { argument
304 AppleThreadPlanStepThroughDirectDispatch::DoPlanExplainsStop(Event *event_ptr) { argument
305 if (ThreadPlanStepOut::DoPlanExplainsStop(event_ptr))
354 bool AppleThreadPlanStepThroughDirectDispatch::ShouldStop(Event *event_ptr) { argument
359 const bool step_out_should_stop = ThreadPlanStepOut::ShouldStop(event_ptr);
102 DoPlanExplainsStop( Event *event_ptr) argument
/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBEvent.cpp41 SBEvent::SBEvent(Event *event_ptr) : m_event_sp(), m_opaque_ptr(event_ptr) { argument
42 LLDB_RECORD_CONSTRUCTOR(SBEvent, (lldb_private::Event *), event_ptr);
157 void SBEvent::reset(Event *event_ptr) { argument
158 m_opaque_ptr = event_ptr;
/freebsd-13-stable/contrib/ntp/ntpd/
H A Dntpsim.c31 void (*event_ptr[]) (Event *) = { variable
171 (*event_ptr[curr_event->function])(curr_event);

Completed in 228 milliseconds

12