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

12

/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadList.h105 bool ShouldStop(Event *event_ptr);
107 Vote ShouldReportStop(Event *event_ptr);
109 Vote ShouldReportRun(Event *event_ptr);
H A DThreadPlanStepInRange.h40 bool ShouldStop(Event *event_ptr) override;
60 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DThreadPlanStepOut.h31 bool ShouldStop(Event *event_ptr) override;
48 bool DoPlanExplainsStop(Event *event_ptr) override;
H A DThread.h98 static const ThreadEventData *GetEventDataFromEvent(const Event *event_ptr);
100 static lldb::ThreadSP GetThreadFromEvent(const Event *event_ptr);
102 static StackID GetStackIDFromEvent(const Event *event_ptr);
104 static lldb::StackFrameSP GetStackFrameFromEvent(const Event *event_ptr);
221 bool ShouldStop(Event *event_ptr);
223 Vote ShouldReportStop(Event *event_ptr);
225 Vote ShouldReportRun(Event *event_ptr);
H A DProcess.h444 void DoOnRemoval(Event *event_ptr) override;
447 GetEventDataFromEvent(const Event *event_ptr);
449 static lldb::ProcessSP GetProcessFromEvent(const Event *event_ptr);
451 static lldb::StateType GetStateFromEvent(const Event *event_ptr);
453 static bool GetRestartedFromEvent(const Event *event_ptr);
455 static size_t GetNumRestartedReasons(const Event *event_ptr);
457 static const char *GetRestartedReasonAtIndex(const Event *event_ptr,
460 static void AddRestartedReason(Event *event_ptr, const char *reason);
462 static void SetRestartedInEvent(Event *event_ptr, bool new_value);
464 static bool GetInterruptedFromEvent(const Event *event_ptr);
[all...]
H A DTarget.h456 static const TargetEventData *GetEventDataFromEvent(const Event *event_ptr);
458 static lldb::TargetSP GetTargetFromEvent(const Event *event_ptr);
460 static ModuleList GetModuleListFromEvent(const Event *event_ptr);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanPython.cpp75 bool ThreadPlanPython::ShouldStop(Event *event_ptr) { argument
89 m_implementation_sp, event_ptr, script_error);
119 bool ThreadPlanPython::DoPlanExplainsStop(Event *event_ptr) { argument
133 m_implementation_sp, event_ptr, script_error);
H A DThreadPlanCallFunction.cpp239 Vote ThreadPlanCallFunction::ShouldReportStop(Event *event_ptr) { argument
243 return ThreadPlan::ShouldReportStop(event_ptr);
246 bool ThreadPlanCallFunction::DoPlanExplainsStop(Event *event_ptr) { argument
253 if (m_subplan_sp && m_subplan_sp->PlanExplainsStop(event_ptr)) {
275 if (Process::ProcessEventData::GetInterruptedFromEvent(event_ptr)) {
341 m_real_stop_info_sp->ShouldStopSynchronous(event_ptr)) {
349 bool ThreadPlanCallFunction::ShouldStop(Event *event_ptr) { argument
353 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 DThread.cpp177 Thread::ThreadEventData::GetEventDataFromEvent(const Event *event_ptr) { argument
178 if (event_ptr) {
179 const EventData *event_data = event_ptr->GetData();
182 return static_cast<const ThreadEventData *>(event_ptr->GetData());
187 ThreadSP Thread::ThreadEventData::GetThreadFromEvent(const Event *event_ptr) { argument
189 const ThreadEventData *event_data = GetEventDataFromEvent(event_ptr);
195 StackID Thread::ThreadEventData::GetStackIDFromEvent(const Event *event_ptr) { argument
197 const ThreadEventData *event_data = GetEventDataFromEvent(event_ptr);
204 Thread::ThreadEventData::GetStackFrameFromEvent(const Event *event_ptr) { argument
205 const ThreadEventData *event_data = GetEventDataFromEvent(event_ptr);
700 ShouldStop(Event *event_ptr) argument
919 ShouldReportStop(Event *event_ptr) argument
979 ShouldReportRun(Event *event_ptr) argument
[all...]
H A DThreadPlanStepInstruction.cpp87 bool ThreadPlanStepInstruction::DoPlanExplainsStop(Event *event_ptr) { argument
125 bool ThreadPlanStepInstruction::ShouldStop(Event *event_ptr) { argument
H A DThreadPlanStepThrough.cpp155 bool ThreadPlanStepThrough::DoPlanExplainsStop(Event *event_ptr) { argument
163 bool ThreadPlanStepThrough::ShouldStop(Event *event_ptr) { argument
H A DThreadPlanStepOut.cpp273 bool ThreadPlanStepOut::DoPlanExplainsStop(Event *event_ptr) { argument
341 bool ThreadPlanStepOut::ShouldStop(Event *event_ptr) { argument
357 return m_step_out_to_inline_plan_sp->ShouldStop(event_ptr);
362 return m_step_through_inline_plan_sp->ShouldStop(event_ptr);
367 return m_step_out_further_plan_sp->ShouldStop(event_ptr);
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.cpp1026 Event *event_ptr; local
1027 event_ptr = m_listener_sp->PeekAtNextEventForBroadcasterWithType(
1030 if (event_ptr) {
1031 LLDB_LOGF(log, "Process::%s (event_ptr) => %s", __FUNCTION__,
1032 StateAsCString(ProcessEventData::GetStateFromEvent(event_ptr)));
1037 return event_ptr;
3326 bool Process::ShouldBroadcastEvent(Event *event_ptr) {
3328 Process::ProcessEventData::GetStateFromEvent(event_ptr);
3380 switch (m_thread_list.ShouldReportRun(event_ptr)) {
3403 if (ProcessEventData::GetInterruptedFromEvent(event_ptr)) {
[all...]
H A DThreadPlanRunToAddress.cpp154 bool ThreadPlanRunToAddress::DoPlanExplainsStop(Event *event_ptr) { argument
158 bool ThreadPlanRunToAddress::ShouldStop(Event *event_ptr) { argument
H A DThreadPlanStepOverRange.cpp126 bool ThreadPlanStepOverRange::ShouldStop(Event *event_ptr) { argument
332 bool ThreadPlanStepOverRange::DoPlanExplainsStop(Event *event_ptr) { argument
H A DThreadPlanStepUntil.cpp256 bool ThreadPlanStepUntil::DoPlanExplainsStop(Event *event_ptr) { argument
263 bool ThreadPlanStepUntil::ShouldStop(Event *event_ptr) { argument
H A DThreadPlanStepInRange.cpp143 bool ThreadPlanStepInRange::ShouldStop(Event *event_ptr) { argument
440 bool ThreadPlanStepInRange::DoPlanExplainsStop(Event *event_ptr) { argument
H A DThreadPlanStepRange.cpp67 Vote ThreadPlanStepRange::ShouldReportStop(Event *event_ptr) { argument
H A DTarget.cpp4048 Target::TargetEventData::GetEventDataFromEvent(const Event *event_ptr) { argument
4049 if (event_ptr) {
4050 const EventData *event_data = event_ptr->GetData();
4053 return static_cast<const TargetEventData *>(event_ptr->GetData());
4058 TargetSP Target::TargetEventData::GetTargetFromEvent(const Event *event_ptr) { argument
4060 const TargetEventData *event_data = GetEventDataFromEvent(event_ptr);
4067 Target::TargetEventData::GetModuleListFromEvent(const Event *event_ptr) { argument
4069 const TargetEventData *event_data = GetEventDataFromEvent(event_ptr);
/freebsd-12-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-12-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.cpp104 Event *event_ptr) {
115 bool AppleThreadPlanStepThroughObjCTrampoline::ShouldStop(Event *event_ptr) { argument
103 DoPlanExplainsStop( Event *event_ptr) argument
/freebsd-12-stable/contrib/ntp/ntpd/
H A Dntpsim.c31 void (*event_ptr[]) (Event *) = { variable
171 (*event_ptr[curr_event->function])(curr_event);
/freebsd-12-stable/sys/i386/bios/
H A Dapm.c954 evp = &sc->event_list[sc->event_ptr];
956 sc->event_ptr++;
957 sc->event_ptr %= APM_NEVENTS;
1263 sc->event_ptr = 0;
1403 i = sc->event_ptr + APM_NEVENTS - sc->event_count;

Completed in 324 milliseconds

12