| /openbsd/src/gnu/llvm/lldb/include/lldb/Target/ |
| D | StopInfo.h | 103 static lldb::StopInfoSP 109 static lldb::StopInfoSP CreateStopReasonWithBreakpointSiteID( 112 static lldb::StopInfoSP CreateStopReasonWithWatchpointID( 116 static lldb::StopInfoSP 120 static lldb::StopInfoSP CreateStopReasonToTrace(Thread &thread); 122 static lldb::StopInfoSP 127 static lldb::StopInfoSP 130 static lldb::StopInfoSP CreateStopReasonWithExec(Thread &thread); 132 static lldb::StopInfoSP 135 static lldb::StopInfoSP CreateStopReasonFork(Thread &thread, [all …]
|
| D | ThreadPlanCallFunction.h | 84 virtual lldb::StopInfoSP GetRealStopInfo() { in GetRealStopInfo() 131 lldb::StopInfoSP
|
| D | Thread.h | 123 lldb::StopInfoSP stop_info_sp; // You have to restore the stop info or you 244 lldb::StopInfoSP GetStopInfo(); 1125 virtual lldb::StopInfoSP GetPrivateStopInfo(bool calculate = true); 1164 void SetStopInfo(const lldb::StopInfoSP &stop_info_sp); 1258 lldb::StopInfoSP m_stop_info_sp; ///< The private stop reason for this thread
|
| D | ThreadPlan.h | 517 lldb::StopInfoSP GetPrivateStopInfo() { in GetPrivateStopInfo() 521 void SetStopInfo(lldb::StopInfoSP stop_reason_sp) { in SetStopInfo()
|
| D | InstrumentationRuntimeStopInfo.h | 31 static lldb::StopInfoSP CreateStopReasonWithInstrumentationData(
|
| D | OperatingSystem.h | 56 virtual lldb::StopInfoSP CreateThreadStopReason(Thread *thread) = 0;
|
| D | ThreadPlanCallUserExpression.h | 37 lldb::StopInfoSP GetRealStopInfo() override;
|
| D | ThreadPlanStepRange.h | 63 bool NextRangeBreakpointExplainsStop(lldb::StopInfoSP stop_info_sp);
|
| /openbsd/src/gnu/llvm/lldb/source/Target/ |
| D | StopInfo.cpp | 720 StopInfoSP stop_info_sp = GetThread().GetPrivateStopInfo(); in DoPlanExplainsStop() 1358 StopInfoSP StopInfo::CreateStopReasonWithBreakpointSiteID(Thread &thread, in CreateStopReasonWithBreakpointSiteID() 1360 return StopInfoSP(new StopInfoBreakpoint(thread, break_id)); in CreateStopReasonWithBreakpointSiteID() 1363 StopInfoSP StopInfo::CreateStopReasonWithBreakpointSiteID(Thread &thread, in CreateStopReasonWithBreakpointSiteID() 1366 return StopInfoSP(new StopInfoBreakpoint(thread, break_id, should_stop)); in CreateStopReasonWithBreakpointSiteID() 1369 StopInfoSP 1372 return StopInfoSP(new StopInfoWatchpoint(thread, watch_id, watch_hit_addr)); in CreateStopReasonWithWatchpointID() 1375 StopInfoSP StopInfo::CreateStopReasonWithSignal(Thread &thread, int signo, in CreateStopReasonWithSignal() 1378 return StopInfoSP(new StopInfoUnixSignal(thread, signo, description)); in CreateStopReasonWithSignal() 1381 StopInfoSP StopInfo::CreateStopReasonToTrace(Thread &thread) { in CreateStopReasonToTrace() [all …]
|
| D | InstrumentationRuntimeStopInfo.cpp | 30 StopInfoSP 34 return StopInfoSP( in CreateStopReasonWithInstrumentationData()
|
| D | ThreadPlanCallUserExpression.cpp | 99 StopInfoSP ThreadPlanCallUserExpression::GetRealStopInfo() { in GetRealStopInfo() 100 StopInfoSP stop_info_sp = ThreadPlanCallFunction::GetRealStopInfo(); in GetRealStopInfo()
|
| D | ThreadPlanBase.cpp | 62 StopInfoSP stop_info_sp = GetThread().GetStopInfo(); in ShouldReportStop() 79 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in ShouldStop()
|
| D | ThreadPlanStepUntil.cpp | 148 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in AnalyzeStop() 265 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in ShouldStop()
|
| D | ThreadPlanStepOverBreakpoint.cpp | 51 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in DoPlanExplainsStop()
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Utility/ |
| D | StopInfoMachException.cpp | 488 static StopInfoSP GetStopInfoForHardwareBP(Thread &thread, Target *target, in GetStopInfoForHardwareBP() 598 StopInfoSP StopInfoMachException::CreateStopReasonWithMachException( in CreateStopReasonWithMachException() 603 return StopInfoSP(); in CreateStopReasonWithMachException() 655 if (StopInfoSP stop_info = in CreateStopReasonWithMachException() 782 return StopInfoSP(); in CreateStopReasonWithMachException() 800 return StopInfoSP(new StopInfoMachException(thread, exc_type, exc_data_count, in CreateStopReasonWithMachException()
|
| D | StopInfoMachException.h | 56 static lldb::StopInfoSP CreateStopReasonWithMachException(
|
| D | ThreadMemory.cpp | 70 lldb::StopInfoSP backing_stop_info_sp( in CalculateStopInfo()
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Architecture/Arm/ |
| D | ArchitectureArm.cpp | 105 thread.SetStopInfo (StopInfoSP()); in OverrideStopInfo() 118 thread.SetStopInfo(StopInfoSP()); in OverrideStopInfo()
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/ |
| D | ThreadKDP.h | 67 lldb::StopInfoSP m_cached_stop_info_sp;
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/OperatingSystem/Python/ |
| D | OperatingSystemPython.h | 57 lldb::StopInfoSP
|
| D | OperatingSystemPython.cpp | 355 StopInfoSP 360 StopInfoSP in CreateThreadStopReason()
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ |
| D | ItaniumABILanguageRuntime.h | 67 bool ExceptionBreakpointsExplainStop(lldb::StopInfoSP stop_reason) override;
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Process/mach-core/ |
| D | ThreadMachCore.cpp | 110 StopInfoSP stop_info; in CalculateStopInfo()
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| D | AppleObjCRuntime.h | 88 bool ExceptionBreakpointsExplainStop(lldb::StopInfoSP stop_reason) override;
|
| /openbsd/src/gnu/llvm/lldb/source/API/ |
| D | SBThread.cpp | 162 StopInfoSP stop_info_sp = exe_ctx.GetThreadPtr()->GetStopInfo(); in GetStopReasonDataCount() 220 StopInfoSP stop_info_sp = thread->GetStopInfo(); in GetStopReasonDataAtIndex() 290 StopInfoSP stop_info = exe_ctx.GetThreadPtr()->GetStopInfo(); in GetStopReasonExtendedInfoAsJSON() 314 StopInfoSP stop_info = exe_ctx.GetThreadPtr()->GetStopInfo(); in GetStopReasonExtendedBacktraces() 362 StopInfoSP stop_info_sp = exe_ctx.GetThreadPtr()->GetStopInfo(); in GetStopReturnValue()
|