Home
last modified time | relevance | path

Searched refs:StopInfo (Results 1 – 24 of 24) sorted by relevance

/openbsd/src/gnu/llvm/lldb/source/Target/
DStopInfo.cpp32 StopInfo::StopInfo(Thread &thread, uint64_t value) in StopInfo() function in StopInfo
39 bool StopInfo::IsValid() const { in IsValid()
46 void StopInfo::MakeStopInfoValid() { in MakeStopInfoValid()
54 bool StopInfo::HasTargetRunSinceMe() { in HasTargetRunSinceMe()
86 class StopInfoBreakpoint : public StopInfo {
89 : StopInfo(thread, break_id), m_should_stop(false), in StopInfoBreakpoint()
97 : StopInfo(thread, break_id), m_should_stop(should_stop), in StopInfoBreakpoint()
622 class StopInfoWatchpoint : public StopInfo {
670 : StopInfo(thread, watch_id), m_watch_hit_addr(watch_hit_addr) {} in StopInfoWatchpoint()
1047 class StopInfoUnixSignal : public StopInfo {
[all …]
DInstrumentationRuntimeStopInfo.cpp21 : StopInfo(thread, 0) { in InstrumentationRuntimeStopInfo()
DCMakeLists.txt44 StopInfo.cpp
DThreadPlanStepInRange.cpp473 SetStopInfo(StopInfo::CreateStopReasonToTrace(thread)); in DoWillResume()
DThread.cpp361 return StopInfo::CreateStopReasonWithPlan( in GetStopInfo()
484 StopInfo::CreateStopReasonWithSignal(*this, LLDB_INVALID_SIGNAL_NUMBER)); in SetStopInfoToNothing()
701 StopInfo *stop_info = GetPrivateStopInfo().get(); in ShouldResume()
DProcess.cpp912 ValueObjectSP valobj_sp = StopInfo::GetCrashingDereference( in HandleProcessStateChangedEvent()
/openbsd/src/gnu/llvm/lldb/include/lldb/Target/
DStopInfo.h20 class StopInfo : public std::enable_shared_from_this<StopInfo> {
26 StopInfo(Thread &thread, uint64_t value);
28 virtual ~StopInfo() = default;
199 StopInfo(const StopInfo &) = delete;
200 const StopInfo &operator=(const StopInfo &) = delete;
DInstrumentationRuntimeStopInfo.h19 class InstrumentationRuntimeStopInfo : public StopInfo {
DProcess.h347 friend class StopInfo; variable
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Utility/
DStopInfoMachException.cpp502 return StopInfo::CreateStopReasonWithWatchpointID(thread, wp_sp->GetID()); in GetStopInfoForHardwareBP()
518 return StopInfo::CreateStopReasonWithBreakpointSiteID(thread, in GetStopInfoForHardwareBP()
630 return StopInfo::CreateStopReasonWithExec(thread); in CreateStopReasonWithMachException()
634 return StopInfo::CreateStopReasonWithSignal(thread, exc_sub_code); in CreateStopReasonWithMachException()
689 return StopInfo::CreateStopReasonWithWatchpointID(thread, in CreateStopReasonWithMachException()
732 return StopInfo::CreateStopReasonWithWatchpointID(thread, in CreateStopReasonWithMachException()
738 return StopInfo::CreateStopReasonToTrace(thread); in CreateStopReasonWithMachException()
777 return StopInfo::CreateStopReasonWithBreakpointSiteID( in CreateStopReasonWithMachException()
780 return StopInfo::CreateStopReasonToTrace(thread); in CreateStopReasonWithMachException()
788 return StopInfo::CreateStopReasonToTrace(thread); in CreateStopReasonWithMachException()
DStopInfoMachException.h24 class StopInfoMachException : public StopInfo {
35 : StopInfo(thread, exc_type), m_exc_data_count(exc_data_count), in StopInfoMachException()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/
DProcessWindows.cpp391 stop_info = StopInfo::CreateStopReasonWithBreakpointSiteID(*stop_thread, in RefreshStateAfterStop()
412 stop_info = StopInfo::CreateStopReasonWithWatchpointID( in RefreshStateAfterStop()
420 stop_info = StopInfo::CreateStopReasonToTrace(*stop_thread); in RefreshStateAfterStop()
467 stop_info = StopInfo::CreateStopReasonWithBreakpointSiteID( in RefreshStateAfterStop()
499 stop_info = StopInfo::CreateStopReasonWithException( in RefreshStateAfterStop()
/openbsd/src/gnu/usr.bin/clang/liblldbTarget/
DMakefile43 StopInfo.cpp \
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/mach-core/
DThreadMachCore.cpp133 StopInfo::CreateStopReasonWithException(*this, S.GetData()); in CalculateStopInfo()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/
DThreadKDP.cpp132 SetStopInfo(StopInfo::CreateStopReasonWithSignal(*this, SIGSTOP)); in CalculateStopInfo()
/openbsd/src/gnu/llvm/lldb/examples/summaries/
Dlldb12 type summary add -w lldb lldb_private::StopInfo -s "ID: ${var.m_stop…
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp1722 StopInfo::CreateStopReasonWithBreakpointSiteID( in SetThreadStopInfo()
1726 StopInfo::CreateStopReasonToTrace(*thread_sp)); in SetThreadStopInfo()
1742 StopInfo::CreateStopReasonWithBreakpointSiteID( in SetThreadStopInfo()
1777 thread_sp->SetStopInfo(StopInfo::CreateStopReasonWithWatchpointID( in SetThreadStopInfo()
1781 thread_sp->SetStopInfo(StopInfo::CreateStopReasonWithException( in SetThreadStopInfo()
1787 StopInfo::CreateStopReasonWithExec(*thread_sp)); in SetThreadStopInfo()
1790 thread_sp->SetStopInfo(StopInfo::CreateStopReasonProcessorTrace( in SetThreadStopInfo()
1798 StopInfo::CreateStopReasonFork(*thread_sp, child_pid, child_tid)); in SetThreadStopInfo()
1805 thread_sp->SetStopInfo(StopInfo::CreateStopReasonVFork( in SetThreadStopInfo()
1810 StopInfo::CreateStopReasonVForkDone(*thread_sp)); in SetThreadStopInfo()
[all …]
/openbsd/src/gnu/llvm/lldb/include/lldb/
Dlldb-forward.h202 class StopInfo; variable
402 typedef std::shared_ptr<lldb_private::StopInfo> StopInfoSP;
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/elf-core/
DThreadElfCore.cpp225 SetStopInfo(StopInfo::CreateStopReasonWithSignal(*this, m_signo)); in CalculateStopInfo()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/minidump/
DProcessMinidump.cpp345 stop_info = StopInfo::CreateStopReasonWithSignal( in RefreshStateAfterStop()
361 stop_info = StopInfo::CreateStopReasonWithException( in RefreshStateAfterStop()
/openbsd/src/gnu/llvm/lldb/source/Commands/
DCommandObjectFrame.cpp159 valobj_sp = StopInfo::GetCrashingDereference(stop_info_sp); in DoExecute()
/openbsd/src/gnu/llvm/lldb/source/Core/
DFormatEntity.cpp1354 StopInfo::GetReturnValueObject(stop_info_sp); in Format()
1371 StopInfo::GetExpressionVariable(stop_info_sp); in Format()
/openbsd/src/gnu/llvm/lldb/source/API/
DSBThread.cpp364 return_valobj_sp = StopInfo::GetReturnValueObject(stop_info_sp); in GetStopReturnValue()
/openbsd/src/gnu/llvm/clang/docs/tools/
Dclang-formatted-files.txt3825 lldb/include/lldb/Target/StopInfo.h