Home
last modified time | relevance | path

Searched refs:StopInfoSP (Results 1 – 25 of 48) sorted by relevance

12

/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DStopInfo.h108 static lldb::StopInfoSP
114 static lldb::StopInfoSP CreateStopReasonWithBreakpointSiteID(
117 static lldb::StopInfoSP
121 static lldb::StopInfoSP
126 static lldb::StopInfoSP CreateStopReasonToTrace(Thread &thread);
128 static lldb::StopInfoSP
133 static lldb::StopInfoSP
136 static lldb::StopInfoSP CreateStopReasonWithExec(Thread &thread);
138 static lldb::StopInfoSP
141 static lldb::StopInfoSP CreateStopReasonFork(Thread &thread,
[all …]
H A DThreadPlanCallFunction.h84 virtual lldb::StopInfoSP GetRealStopInfo() { in GetRealStopInfo()
131 lldb::StopInfoSP
H A DThread.h125 lldb::StopInfoSP stop_info_sp; // You have to restore the stop info or you
244 lldb::StopInfoSP GetStopInfo();
1154 virtual lldb::StopInfoSP GetPrivateStopInfo(bool calculate = true);
1200 void SetStopInfo(const lldb::StopInfoSP &stop_info_sp);
1304 lldb::StopInfoSP m_stop_info_sp; ///< The private stop reason for this thread
H A DThreadPlan.h517 lldb::StopInfoSP GetPrivateStopInfo() { in GetPrivateStopInfo()
521 void SetStopInfo(lldb::StopInfoSP stop_reason_sp) { in SetStopInfo()
H A DInstrumentationRuntimeStopInfo.h31 static lldb::StopInfoSP CreateStopReasonWithInstrumentationData(
H A DOperatingSystem.h56 virtual lldb::StopInfoSP CreateThreadStopReason(Thread *thread) = 0;
H A DThreadPlanCallUserExpression.h37 lldb::StopInfoSP GetRealStopInfo() override;
H A DThreadPlanStepRange.h63 bool NextRangeBreakpointExplainsStop(lldb::StopInfoSP stop_info_sp);
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp724 StopInfoSP stop_info_sp = GetThread().GetPrivateStopInfo(); in DoPlanExplainsStop()
1366 StopInfoSP StopInfo::CreateStopReasonWithBreakpointSiteID(Thread &thread, in CreateStopReasonWithBreakpointSiteID()
1368 return StopInfoSP(new StopInfoBreakpoint(thread, break_id)); in CreateStopReasonWithBreakpointSiteID()
1371 StopInfoSP StopInfo::CreateStopReasonWithBreakpointSiteID(Thread &thread, in CreateStopReasonWithBreakpointSiteID()
1374 return StopInfoSP(new StopInfoBreakpoint(thread, break_id, should_stop)); in CreateStopReasonWithBreakpointSiteID()
1379 StopInfoSP StopInfo::CreateStopReasonWithWatchpointID(Thread &thread, in CreateStopReasonWithWatchpointID()
1382 return StopInfoSP( in CreateStopReasonWithWatchpointID()
1386 StopInfoSP StopInfo::CreateStopReasonWithSignal(Thread &thread, int signo, in CreateStopReasonWithSignal()
1390 return StopInfoSP(new StopInfoUnixSignal(thread, signo, description, code)); in CreateStopReasonWithSignal()
1393 StopInfoSP StopInfo::CreateStopReasonToTrace(Thread &thread) { in CreateStopReasonToTrace()
[all …]
H A DInstrumentationRuntimeStopInfo.cpp30 StopInfoSP
34 return StopInfoSP( in CreateStopReasonWithInstrumentationData()
H A DThreadPlanCallUserExpression.cpp99 StopInfoSP ThreadPlanCallUserExpression::GetRealStopInfo() { in GetRealStopInfo()
100 StopInfoSP stop_info_sp = ThreadPlanCallFunction::GetRealStopInfo(); in GetRealStopInfo()
H A DThreadPlanBase.cpp62 StopInfoSP stop_info_sp = GetThread().GetStopInfo(); in ShouldReportStop()
79 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in ShouldStop()
H A DThreadPlanStepUntil.cpp148 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in AnalyzeStop()
265 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in ShouldStop()
H A DThreadPlanStepOverBreakpoint.cpp51 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in DoPlanExplainsStop()
H A DThread.cpp341 lldb::StopInfoSP Thread::GetStopInfo() { in GetStopInfo()
379 lldb::StopInfoSP Thread::GetPrivateStopInfo(bool calculate) { in GetPrivateStopInfo()
406 SetStopInfo(StopInfoSP()); in GetPrivateStopInfo()
436 lldb::StopInfoSP stop_info_sp(GetStopInfo()); in GetStopReason()
457 void Thread::SetStopInfo(const lldb::StopInfoSP &stop_info_sp) { in SetStopInfo()
591 StopInfoSP stop_info_sp = GetStopInfo(); in GetStopDescriptionRaw()
792 StopInfoSP private_stop_info(GetPrivateStopInfo()); in ShouldStop()
H A DThreadPlanStepInstruction.cpp90 StopInfoSP stop_info_sp = GetPrivateStopInfo(); in DoPlanExplainsStop()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Architecture/Arm/
H A DArchitectureArm.cpp105 thread.SetStopInfo (StopInfoSP()); in OverrideStopInfo()
118 thread.SetStopInfo(StopInfoSP()); in OverrideStopInfo()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp491 static StopInfoSP GetStopInfoForHardwareBP(Thread &thread, Target *target, in GetStopInfoForHardwareBP()
595 StopInfoSP StopInfoMachException::CreateStopReasonWithMachException( in CreateStopReasonWithMachException()
600 return StopInfoSP(); in CreateStopReasonWithMachException()
653 if (StopInfoSP stop_info = in CreateStopReasonWithMachException()
792 return StopInfoSP(); in CreateStopReasonWithMachException()
H A DStopInfoMachException.h59 static lldb::StopInfoSP CreateStopReasonWithMachException(
H A DThreadMemory.cpp70 lldb::StopInfoSP backing_stop_info_sp( in CalculateStopInfo()
/freebsd/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.h57 lldb::StopInfoSP
H A DOperatingSystemPython.cpp349 StopInfoSP
354 StopInfoSP in CreateThreadStopReason()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.h71 bool ExceptionBreakpointsExplainStop(lldb::StopInfoSP stop_reason) override;
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.h88 bool ExceptionBreakpointsExplainStop(lldb::StopInfoSP stop_reason) override;
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBThread.cpp162 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()

12