| /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | StopInfo.h | 134 static lldb::StopInfoSP 140 static lldb::StopInfoSP CreateStopReasonWithBreakpointSiteID( 143 static lldb::StopInfoSP 147 static lldb::StopInfoSP 152 static lldb::StopInfoSP 156 static lldb::StopInfoSP CreateStopReasonToTrace(Thread &thread); 158 static lldb::StopInfoSP 163 static lldb::StopInfoSP 166 static lldb::StopInfoSP CreateStopReasonWithExec(Thread &thread); 168 static lldb::StopInfoSP [all …]
|
| H A D | ThreadPlanStepRange.h | 64 bool IsNextBranchBreakpointStop(lldb::StopInfoSP stop_info_sp); 70 bool NextRangeBreakpointExplainsStop(lldb::StopInfoSP stop_info_sp);
|
| H A D | ThreadPlanCallFunction.h | 84 virtual lldb::StopInfoSP GetRealStopInfo() { in GetRealStopInfo() 131 lldb::StopInfoSP
|
| H A D | Thread.h | 127 lldb::StopInfoSP stop_info_sp; // You have to restore the stop info or you 249 lldb::StopInfoSP GetStopInfo(); 1204 virtual lldb::StopInfoSP GetPrivateStopInfo(bool calculate = true); 1250 void SetStopInfo(const lldb::StopInfoSP &stop_info_sp); 1354 lldb::StopInfoSP m_stop_info_sp; ///< The private stop reason for this thread
|
| H A D | ThreadPlan.h | 544 lldb::StopInfoSP GetPrivateStopInfo() { in GetPrivateStopInfo() 548 void SetStopInfo(lldb::StopInfoSP stop_reason_sp) { in SetStopInfo()
|
| H A D | InstrumentationRuntimeStopInfo.h | 34 static lldb::StopInfoSP CreateStopReasonWithInstrumentationData(
|
| H A D | OperatingSystem.h | 56 virtual lldb::StopInfoSP CreateThreadStopReason(Thread *thread) = 0;
|
| H A D | ThreadPlanCallUserExpression.h | 37 lldb::StopInfoSP GetRealStopInfo() override;
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | StopInfo.cpp | 745 StopInfoSP stop_info_sp = GetThread().GetPrivateStopInfo(); in DoPlanExplainsStop() 1474 StopInfoSP StopInfo::CreateStopReasonWithBreakpointSiteID(Thread &thread, in CreateStopReasonWithBreakpointSiteID() 1478 return StopInfoSP(new StopInfoBreakpoint(thread, break_id)); in CreateStopReasonWithBreakpointSiteID() 1481 StopInfoSP StopInfo::CreateStopReasonWithBreakpointSiteID(Thread &thread, in CreateStopReasonWithBreakpointSiteID() 1484 return StopInfoSP(new StopInfoBreakpoint(thread, break_id, should_stop)); in CreateStopReasonWithBreakpointSiteID() 1489 StopInfoSP StopInfo::CreateStopReasonWithWatchpointID(Thread &thread, in CreateStopReasonWithWatchpointID() 1492 return StopInfoSP( in CreateStopReasonWithWatchpointID() 1496 StopInfoSP StopInfo::CreateStopReasonWithSignal(Thread &thread, int signo, in CreateStopReasonWithSignal() 1500 return StopInfoSP(new StopInfoUnixSignal(thread, signo, description, code)); in CreateStopReasonWithSignal() 1503 StopInfoSP StopInfo::CreateStopReasonWithInterrupt(Thread &thread, int signo, in CreateStopReasonWithInterrupt() [all …]
|
| H A D | InstrumentationRuntimeStopInfo.cpp | 37 StopInfoSP 41 return StopInfoSP( in CreateStopReasonWithInstrumentationData()
|
| H A D | ThreadPlanCallUserExpression.cpp | 99 StopInfoSP ThreadPlanCallUserExpression::GetRealStopInfo() { in GetRealStopInfo() 100 StopInfoSP stop_info_sp = ThreadPlanCallFunction::GetRealStopInfo(); in GetRealStopInfo()
|
| H A D | ThreadPlanBase.cpp | 62 StopInfoSP stop_info_sp = GetThread().GetStopInfo(); in ShouldReportStop() 79 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in ShouldStop()
|
| H A D | ThreadPlanStepUntil.cpp | 148 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in AnalyzeStop() 265 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in ShouldStop()
|
| H A D | ThreadPlanStepOverBreakpoint.cpp | 51 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in DoPlanExplainsStop()
|
| H A D | Thread.cpp | 348 lldb::StopInfoSP Thread::GetStopInfo() { in GetStopInfo() 386 lldb::StopInfoSP Thread::GetPrivateStopInfo(bool calculate) { in GetPrivateStopInfo() 413 SetStopInfo(StopInfoSP()); in GetPrivateStopInfo() 443 lldb::StopInfoSP stop_info_sp(GetStopInfo()); in GetStopReason() 464 void Thread::SetStopInfo(const lldb::StopInfoSP &stop_info_sp) { in SetStopInfo() 600 StopInfoSP stop_info_sp = GetStopInfo(); in GetStopDescriptionRaw() 821 StopInfoSP private_stop_info(GetPrivateStopInfo()); in ShouldStop()
|
| H A D | ThreadPlanStepOut.cpp | 328 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in DoPlanExplainsStop() 407 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in ShouldStop()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Architecture/Arm/ |
| H A D | ArchitectureArm.cpp | 105 thread.SetStopInfo (StopInfoSP()); in OverrideStopInfo() 118 thread.SetStopInfo(StopInfoSP()); in OverrideStopInfo()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
| H A D | StopInfoMachException.h | 59 static lldb::StopInfoSP CreateStopReasonWithMachException(
|
| H A D | StopInfoMachException.cpp | 566 StopInfoSP StopInfoMachException::CreateStopReasonWithMachException( in CreateStopReasonWithMachException() 571 return StopInfoSP(); in CreateStopReasonWithMachException() 747 return StopInfoSP(); in CreateStopReasonWithMachException()
|
| H A D | ThreadMemory.cpp | 69 lldb::StopInfoSP backing_stop_info_sp( in CalculateStopInfo()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/ |
| H A D | OperatingSystemPython.h | 57 lldb::StopInfoSP
|
| H A D | OperatingSystemPython.cpp | 349 StopInfoSP 354 StopInfoSP in CreateThreadStopReason()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ |
| H A D | ItaniumABILanguageRuntime.h | 71 bool ExceptionBreakpointsExplainStop(lldb::StopInfoSP stop_reason) override;
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCRuntime.h | 88 bool ExceptionBreakpointsExplainStop(lldb::StopInfoSP stop_reason) override;
|
| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBThread.cpp | 162 StopInfoSP stop_info_sp = exe_ctx.GetThreadPtr()->GetStopInfo(); in GetStopReasonDataCount() 224 StopInfoSP stop_info_sp = thread->GetStopInfo(); in GetStopReasonDataAtIndex() 298 StopInfoSP stop_info = exe_ctx.GetThreadPtr()->GetStopInfo(); in GetStopReasonExtendedInfoAsJSON() 322 StopInfoSP stop_info = exe_ctx.GetThreadPtr()->GetStopInfo(); in GetStopReasonExtendedBacktraces() 370 StopInfoSP stop_info_sp = exe_ctx.GetThreadPtr()->GetStopInfo(); in GetStopReturnValue()
|