Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/lldb/source/Target/
HDStopInfo.cpp36 StopInfo::StopInfo (Thread &thread, uint64_t value) : in StopInfo() function in StopInfo
49 StopInfo::IsValid () const in IsValid()
58 StopInfo::MakeStopInfoValid () in MakeStopInfoValid()
69 StopInfo::HasTargetRunSinceMe () in HasTargetRunSinceMe()
109 class StopInfoBreakpoint : public StopInfo
113 StopInfo (thread, break_id), in StopInfoBreakpoint()
125 StopInfo (thread, break_id), in StopInfoBreakpoint()
584 class StopInfoWatchpoint : public StopInfo
619 StopInfo(thread, watch_id), in StopInfoWatchpoint()
885 class StopInfoUnixSignal : public StopInfo
[all …]
HDInstrumentationRuntimeStopInfo.cpp20 StopInfo(thread, 0) in InstrumentationRuntimeStopInfo()
HDThreadPlanStepInRange.cpp538 SetStopInfo(StopInfo::CreateStopReasonToTrace(m_thread)); in DoWillResume()
HDThread.cpp426 …return StopInfo::CreateStopReasonWithPlan (plan_sp, GetReturnValueObject(), GetExpressionVariable(… in GetStopInfo()
548 SetStopInfo (StopInfo::CreateStopReasonWithSignal (*this, LLDB_INVALID_SIGNAL_NUMBER)); in SetStopInfoToNothing()
727 StopInfo *stop_info = GetPrivateStopInfo().get(); in ShouldResume()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
HDStopInfoMachException.cpp303 return StopInfo::CreateStopReasonToTrace (thread); in CreateStopReasonWithMachException()
332 return StopInfo::CreateStopReasonWithExec (thread); in CreateStopReasonWithMachException()
351 return StopInfo::CreateStopReasonWithSignal (thread, exc_sub_code); in CreateStopReasonWithMachException()
388 … return StopInfo::CreateStopReasonWithWatchpointID(thread, wp_sp->GetID()); in CreateStopReasonWithMachException()
424 … return StopInfo::CreateStopReasonWithWatchpointID(thread, wp_sp->GetID()); in CreateStopReasonWithMachException()
449 return StopInfo::CreateStopReasonToTrace(thread); in CreateStopReasonWithMachException()
464 … return StopInfo::CreateStopReasonWithWatchpointID(thread, wp_sp->GetID()); in CreateStopReasonWithMachException()
468 return StopInfo::CreateStopReasonToTrace(thread); in CreateStopReasonWithMachException()
505 … return StopInfo::CreateStopReasonWithBreakpointSiteID (thread, bp_site_sp->GetID()); in CreateStopReasonWithMachException()
513 return StopInfo::CreateStopReasonToTrace (thread); in CreateStopReasonWithMachException()
HDStopInfoMachException.h23 class StopInfoMachException : public StopInfo
34 StopInfo (thread, exc_type), in StopInfoMachException()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Target/
HDStopInfo.h25 class StopInfo
34 StopInfo (Thread &thread, uint64_t value);
36 virtual ~StopInfo() in ~StopInfo()
242 DISALLOW_COPY_AND_ASSIGN (StopInfo);
HDInstrumentationRuntimeStopInfo.h24 class InstrumentationRuntimeStopInfo : public StopInfo
HDProcess.h745 friend class StopInfo; variable
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
HDPOSIXThread.cpp486 SetStopInfo (StopInfo::CreateStopReasonWithBreakpointSiteID(*this, bp_id)); in BreakNotify()
490 SetStopInfo (StopInfo::CreateStopReasonWithBreakpointSiteID(*this, bp_id, should_stop)); in BreakNotify()
531 SetStopInfo (StopInfo::CreateStopReasonWithWatchpointID(*this, in WatchNotify()
554 SetStopInfo (StopInfo::CreateStopReasonToTrace(*this)); in TraceNotify()
567 SetStopInfo (StopInfo::CreateStopReasonWithSignal(*this, signo)); in SignalNotify()
574 SetStopInfo (StopInfo::CreateStopReasonWithSignal(*this, signo)); in SignalDeliveredNotify()
632 SetStopInfo (StopInfo::CreateStopReasonWithExec(*this)); in ExecNotify()
HDPOSIXStopInfo.h29 : public lldb_private::StopInfo
33 : StopInfo(thread, status) in POSIXStopInfo()
/NextBSD/lib/clang/liblldbTarget/
HDMakefile.depend40 StopInfo.o: DiagnosticCommonKinds.inc.h
41 StopInfo.po: DiagnosticCommonKinds.inc.h
HDMakefile37 StopInfo.cpp \
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/
HDThreadElfCore.cpp201 SetStopInfo(StopInfo::CreateStopReasonWithSignal (*this, m_signo)); in CalculateStopInfo()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
HDProcessGDBRemote.cpp1959 thread_sp->SetStopInfo (StopInfo::CreateStopReasonToTrace (*thread_sp)); in SetThreadStopInfo()
1974 …thread_sp->SetStopInfo (StopInfo::CreateStopReasonWithBreakpointSiteID (*thread_sp, bp_site_sp->Ge… in SetThreadStopInfo()
2008 …thread_sp->SetStopInfo (StopInfo::CreateStopReasonWithWatchpointID (*thread_sp, watch_id, wp_hit_a… in SetThreadStopInfo()
2013 … thread_sp->SetStopInfo (StopInfo::CreateStopReasonWithException(*thread_sp, description.c_str())); in SetThreadStopInfo()
2019 thread_sp->SetStopInfo (StopInfo::CreateStopReasonWithExec(*thread_sp)); in SetThreadStopInfo()
2043 …thread_sp->SetStopInfo (StopInfo::CreateStopReasonWithBreakpointSiteID (*thread_sp, bp_site_sp->Ge… in SetThreadStopInfo()
2057 … thread_sp->SetStopInfo (StopInfo::CreateStopReasonToTrace (*thread_sp)); in SetThreadStopInfo()
2059 …thread_sp->SetStopInfo (StopInfo::CreateStopReasonWithSignal(*thread_sp, signo, description.c_str(… in SetThreadStopInfo()
2063 …thread_sp->SetStopInfo (StopInfo::CreateStopReasonWithSignal (*thread_sp, signo, description.c_str… in SetThreadStopInfo()
2077 …thread_sp->SetStopInfo (StopInfo::CreateStopReasonWithException (*thread_sp, description.c_str())); in SetThreadStopInfo()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/
HDlldb-forward.h199 class StopInfo; variable
390 typedef std::shared_ptr<lldb_private::StopInfo> StopInfoSP;
/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDFormatEntity.cpp1415 … ValueObjectSP return_valobj_sp = StopInfo::GetReturnValueObject (stop_info_sp); in Format()
1435 … ClangExpressionVariableSP expression_var_sp = StopInfo::GetExpressionVariable (stop_info_sp); in Format()
/NextBSD/contrib/llvm/tools/lldb/source/API/
HDSBThread.cpp479 return_valobj_sp = StopInfo::GetReturnValueObject (stop_info_sp); in GetStopReturnValue()