Home
last modified time | relevance | path

Searched refs:stop_info_sp (Results 1 – 23 of 23) sorted by relevance

/external/lldb/source/Target/
DThreadPlanBase.cpp84 StopInfoSP stop_info_sp = m_thread.GetStopInfo (); in ShouldReportStop() local
85 if (stop_info_sp) in ShouldReportStop()
87 bool should_notify = stop_info_sp->ShouldNotify(event_ptr); in ShouldReportStop()
105 StopInfoSP stop_info_sp = GetPrivateStopInfo (); in ShouldStop() local
106 if (stop_info_sp) in ShouldStop()
108 StopReason reason = stop_info_sp->GetStopReason (); in ShouldStop()
120 if (stop_info_sp->ShouldStopSynchronous(event_ptr)) in ShouldStop()
134 if (stop_info_sp->ShouldNotify (event_ptr)) in ShouldStop()
168 if (stop_info_sp->ShouldStop(event_ptr)) in ShouldStop()
179 if (stop_info_sp->ShouldNotify(event_ptr)) in ShouldStop()
DThreadPlanCallUserExpression.cpp69 StopInfoSP stop_info_sp = ThreadPlanCallFunction::GetRealStopInfo(); in GetRealStopInfo() local
71 if (stop_info_sp) in GetRealStopInfo()
78 stop_info_sp->SetDescription(s.GetData()); in GetRealStopInfo()
81 return stop_info_sp; in GetRealStopInfo()
DThreadPlanStepUntil.cpp179 StopInfoSP stop_info_sp = GetPrivateStopInfo (); in AnalyzeStop() local
183 if (stop_info_sp) in AnalyzeStop()
185 StopReason reason = stop_info_sp->GetStopReason(); in AnalyzeStop()
192 …eSP this_site = m_thread.GetProcess()->GetBreakpointSiteList().FindByID (stop_info_sp->GetValue()); in AnalyzeStop()
323 StopInfoSP stop_info_sp = GetPrivateStopInfo (); in ShouldStop() local
324 if (!stop_info_sp || stop_info_sp->GetStopReason() == eStopReasonNone) in ShouldStop()
DThreadPlanStepThrough.cpp270 StopInfoSP stop_info_sp(m_thread.GetStopInfo()); in HitOurBackstopBreakpoint() local
271 if (stop_info_sp && stop_info_sp->GetStopReason() == eStopReasonBreakpoint) in HitOurBackstopBreakpoint()
273 break_id_t stop_value = (break_id_t) stop_info_sp->GetValue(); in HitOurBackstopBreakpoint()
DThreadPlanStepOverBreakpoint.cpp64 StopInfoSP stop_info_sp = GetPrivateStopInfo (); in DoPlanExplainsStop() local
65 if (stop_info_sp) in DoPlanExplainsStop()
67 StopReason reason = stop_info_sp->GetStopReason(); in DoPlanExplainsStop()
DThreadPlanStepInstruction.cpp96 StopInfoSP stop_info_sp = GetPrivateStopInfo (); in DoPlanExplainsStop() local
97 if (stop_info_sp) in DoPlanExplainsStop()
99 StopReason reason = stop_info_sp->GetStopReason(); in DoPlanExplainsStop()
DThreadPlanStepOverRange.cpp303 StopInfoSP stop_info_sp = GetPrivateStopInfo (); in DoPlanExplainsStop() local
306 if (stop_info_sp) in DoPlanExplainsStop()
308 StopReason reason = stop_info_sp->GetStopReason(); in DoPlanExplainsStop()
316 if (NextRangeBreakpointExplainsStop(stop_info_sp)) in DoPlanExplainsStop()
DThreadPlanStepOut.cpp203 StopInfoSP stop_info_sp = GetPrivateStopInfo (); in DoPlanExplainsStop() local
204 if (stop_info_sp) in DoPlanExplainsStop()
206 StopReason reason = stop_info_sp->GetStopReason(); in DoPlanExplainsStop()
212 …iteSP site_sp (m_thread.GetProcess()->GetBreakpointSiteList().FindByID (stop_info_sp->GetValue())); in DoPlanExplainsStop()
DThreadPlanStepInRange.cpp420 StopInfoSP stop_info_sp = GetPrivateStopInfo (); in DoPlanExplainsStop() local
421 if (stop_info_sp) in DoPlanExplainsStop()
423 StopReason reason = stop_info_sp->GetStopReason(); in DoPlanExplainsStop()
428 if (NextRangeBreakpointExplainsStop(stop_info_sp)) in DoPlanExplainsStop()
DThreadPlanCallFunction.cpp587 StopInfoSP stop_info_sp = GetPrivateStopInfo (); in BreakpointsExplainStop() local
590 m_cxx_language_runtime->ExceptionBreakpointsExplainStop(stop_info_sp)) in BreakpointsExplainStop()
592 m_objc_language_runtime->ExceptionBreakpointsExplainStop(stop_info_sp))) in BreakpointsExplainStop()
602 stop_info_sp->OverrideShouldStop (true); in BreakpointsExplainStop()
DThread.cpp433 lldb::StopInfoSP stop_info_sp (GetStopInfo ()); in GetStopReason() local
434 if (stop_info_sp) in GetStopReason()
435 return stop_info_sp->GetStopReason(); in GetStopReason()
442 Thread::SetStopInfo (const lldb::StopInfoSP &stop_info_sp) in SetStopInfo() argument
444 m_stop_info_sp = stop_info_sp; in SetStopInfo()
460 …x%" PRIx64 ": stop info = %s (stop_id = %u)\n", this, GetID(), stop_info_sp ? stop_info_sp->GetDes… in SetStopInfo()
496 saved_state.stop_info_sp = GetStopInfo(); in CheckpointThreadState()
515 if (saved_state.stop_info_sp) in RestoreThreadStateFromCheckpoint()
516 saved_state.stop_info_sp->MakeStopInfoValid(); in RestoreThreadStateFromCheckpoint()
517 SetStopInfo(saved_state.stop_info_sp); in RestoreThreadStateFromCheckpoint()
DStackFrameList.cpp146 StopInfoSP stop_info_sp = m_thread.GetStopInfo(); in ResetCurrentInlinedDepth() local
147 if (stop_info_sp) in ResetCurrentInlinedDepth()
149 switch (stop_info_sp->GetStopReason()) in ResetCurrentInlinedDepth()
168 uint32_t bp_site_id = stop_info_sp->GetValue(); in ResetCurrentInlinedDepth()
DStopInfo.cpp1134 StopInfo::GetReturnValueObject(StopInfoSP &stop_info_sp) in GetReturnValueObject() argument
1136 if (stop_info_sp && stop_info_sp->GetStopReason() == eStopReasonPlanComplete) in GetReturnValueObject()
1138 StopInfoThreadPlan *plan_stop_info = static_cast<StopInfoThreadPlan *>(stop_info_sp.get()); in GetReturnValueObject()
DProcess.cpp4178 StopInfoSP stop_info_sp = thread_sp->GetStopInfo (); in DoOnRemoval() local
4179 if (stop_info_sp && stop_info_sp->IsValid()) in DoOnRemoval()
4183 if (stop_info_sp->GetOverrideShouldStop()) in DoOnRemoval()
4185 this_thread_wants_to_stop = stop_info_sp->GetOverriddenShouldStopValue(); in DoOnRemoval()
4189 stop_info_sp->PerformAction(event_ptr); in DoOnRemoval()
4196 if (stop_info_sp->HasTargetRunSinceMe()) in DoOnRemoval()
4202 this_thread_wants_to_stop = stop_info_sp->ShouldStop(event_ptr); in DoOnRemoval()
5007 StopInfoSP stop_info_sp (thread_sp->GetStopInfo ()); in RunThreadPlan() local
5009 if (stop_info_sp) in RunThreadPlan()
5010 stop_reason = stop_info_sp->GetStopReason(); in RunThreadPlan()
[all …]
DThreadPlanStepRange.cpp396 ThreadPlanStepRange::NextRangeBreakpointExplainsStop (lldb::StopInfoSP stop_info_sp) in NextRangeBreakpointExplainsStop() argument
402 break_id_t bp_site_id = stop_info_sp->GetValue(); in NextRangeBreakpointExplainsStop()
/external/lldb/source/API/
DSBThread.cpp144 StopInfoSP stop_info_sp = exe_ctx.GetThreadPtr()->GetStopInfo (); in GetStopReasonDataCount() local
145 if (stop_info_sp) in GetStopReasonDataCount()
147 StopReason reason = stop_info_sp->GetStopReason(); in GetStopReasonDataCount()
161 break_id_t site_id = stop_info_sp->GetValue(); in GetStopReasonDataCount()
203 StopInfoSP stop_info_sp = thread->GetStopInfo (); in GetStopReasonDataAtIndex() local
204 if (stop_info_sp) in GetStopReasonDataAtIndex()
206 StopReason reason = stop_info_sp->GetStopReason(); in GetStopReasonDataAtIndex()
220 break_id_t site_id = stop_info_sp->GetValue(); in GetStopReasonDataAtIndex()
245 return stop_info_sp->GetValue(); in GetStopReasonDataAtIndex()
248 return stop_info_sp->GetValue(); in GetStopReasonDataAtIndex()
[all …]
/external/lldb/include/lldb/Target/
DThread.h204 …lldb::StopInfoSP stop_info_sp; // You have to restore the stop info or you might continue with … member
963 SetStopInfo (const lldb::StopInfoSP &stop_info_sp);
1028 lldb::StopInfoSP stop_info_sp; member
DThreadPlanStepRange.h74 NextRangeBreakpointExplainsStop (lldb::StopInfoSP stop_info_sp);
DStopInfo.h169 GetReturnValueObject (lldb::StopInfoSP &stop_info_sp);
/external/lldb/source/Plugins/OperatingSystem/Python/
DOperatingSystemPython.cpp379 StopInfoSP stop_info_sp; //(StopInfo::CreateStopReasonWithSignal (*thread, SIGSTOP)); in CreateThreadStopReason() local
380 return stop_info_sp; in CreateThreadStopReason()
/external/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp1692 lldb::StopInfoSP stop_info_sp (thread_sp->GetStopInfo ()); in SetThreadStopInfo() local
1693 if (stop_info_sp) in SetThreadStopInfo()
1695 stop_info_sp->SetDescription (description.c_str()); in SetThreadStopInfo()
1860 StopInfoSP stop_info_sp = thread_sp->GetPrivateStopInfo(); in DoDestroy() local
1862 if (stop_info_sp) in DoDestroy()
1863 reason = stop_info_sp->GetStopReason(); in DoDestroy()
1870 stop_info_sp->GetDescription()); in DoDestroy()
1895 StopInfoSP stop_info_sp = thread_sp->GetPrivateStopInfo(); in DoDestroy() local
1897 if (stop_info_sp) in DoDestroy()
1898 reason = stop_info_sp->GetStopReason(); in DoDestroy()
/external/lldb/source/Core/
DDebugger.cpp1967 StopInfoSP stop_info_sp = thread->GetStopInfo (); in FormatPromptRecurse() local
1968 if (stop_info_sp && stop_info_sp->IsValid()) in FormatPromptRecurse()
1970 cstr = stop_info_sp->GetDescription(); in FormatPromptRecurse()
1980 StopInfoSP stop_info_sp = thread->GetStopInfo (); in FormatPromptRecurse() local
1981 if (stop_info_sp && stop_info_sp->IsValid()) in FormatPromptRecurse()
1983 … ValueObjectSP return_valobj_sp = StopInfo::GetReturnValueObject (stop_info_sp); in FormatPromptRecurse()
/external/lldb/source/Commands/
DCommandObjectProcess.cpp817 StopInfoSP stop_info_sp = sel_thread_sp->GetStopInfo(); in DoExecute() local
818 if (stop_info_sp && stop_info_sp->GetStopReason() == eStopReasonBreakpoint) in DoExecute()
820 lldb::break_id_t bp_site_id = (lldb::break_id_t)stop_info_sp->GetValue(); in DoExecute()