/external/lldb/source/Target/ |
D | ThreadPlanBase.cpp | 84 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()
|
D | ThreadPlanCallUserExpression.cpp | 69 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()
|
D | ThreadPlanStepUntil.cpp | 179 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()
|
D | ThreadPlanStepThrough.cpp | 270 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()
|
D | ThreadPlanStepOverBreakpoint.cpp | 64 StopInfoSP stop_info_sp = GetPrivateStopInfo (); in DoPlanExplainsStop() local 65 if (stop_info_sp) in DoPlanExplainsStop() 67 StopReason reason = stop_info_sp->GetStopReason(); in DoPlanExplainsStop()
|
D | ThreadPlanStepInstruction.cpp | 96 StopInfoSP stop_info_sp = GetPrivateStopInfo (); in DoPlanExplainsStop() local 97 if (stop_info_sp) in DoPlanExplainsStop() 99 StopReason reason = stop_info_sp->GetStopReason(); in DoPlanExplainsStop()
|
D | ThreadPlanStepOverRange.cpp | 303 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()
|
D | ThreadPlanStepOut.cpp | 203 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()
|
D | ThreadPlanStepInRange.cpp | 420 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()
|
D | ThreadPlanCallFunction.cpp | 587 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()
|
D | Thread.cpp | 433 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()
|
D | StackFrameList.cpp | 146 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()
|
D | StopInfo.cpp | 1134 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()
|
D | Process.cpp | 4178 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 …]
|
D | ThreadPlanStepRange.cpp | 396 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/ |
D | SBThread.cpp | 144 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/ |
D | Thread.h | 204 …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
|
D | ThreadPlanStepRange.h | 74 NextRangeBreakpointExplainsStop (lldb::StopInfoSP stop_info_sp);
|
D | StopInfo.h | 169 GetReturnValueObject (lldb::StopInfoSP &stop_info_sp);
|
/external/lldb/source/Plugins/OperatingSystem/Python/ |
D | OperatingSystemPython.cpp | 379 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/ |
D | ProcessGDBRemote.cpp | 1692 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/ |
D | Debugger.cpp | 1967 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/ |
D | CommandObjectProcess.cpp | 817 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()
|