Home
last modified time | relevance | path

Searched refs:stop_info (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanTracer.cpp79 lldb::StopInfoSP stop_info = GetThread().GetStopInfo(); in TracerExplainsStop() local
80 return (stop_info->GetStopReason() == eStopReasonTrace); in TracerExplainsStop()
H A DThread.cpp678 StopInfo *stop_info = GetPrivateStopInfo().get(); in ShouldResume() local
679 if (stop_info) in ShouldResume()
680 stop_info->WillResume(resume_state); in ShouldResume()
1795 StructuredData::ObjectSP stop_info = m_stop_info_sp->GetExtendedInfo(); in GetDescription() local
1796 if (stop_info) { in GetDescription()
1797 stop_info->Dump(strm); in GetDescription()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeThreadProtocol.h36 virtual bool GetStopReason(ThreadStopInfo &stop_info,
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.cpp253 lldb::StopInfoSP stop_info; in RefreshStateAfterStop() local
268 stop_info = StopInfo::CreateStopReasonWithSignal( in RefreshStateAfterStop()
271 stop_info = StopInfoMachException::CreateStopReasonWithMachException( in RefreshStateAfterStop()
284 stop_info = StopInfo::CreateStopReasonWithException( in RefreshStateAfterStop()
288 stop_thread->SetStopInfo(stop_info); in RefreshStateAfterStop()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeThreadNetBSD.h36 bool GetStopReason(ThreadStopInfo &stop_info,
H A DNativeThreadNetBSD.cpp228 bool NativeThreadNetBSD::GetStopReason(ThreadStopInfo &stop_info, in GetStopReason() argument
239 stop_info = m_stop_info; in GetStopReason()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeThreadFreeBSD.h36 bool GetStopReason(ThreadStopInfo &stop_info,
H A DNativeThreadFreeBSD.cpp216 bool NativeThreadFreeBSD::GetStopReason(ThreadStopInfo &stop_info, in GetStopReason() argument
227 stop_info = m_stop_info; in GetStopReason()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBThread.cpp290 StopInfoSP stop_info = exe_ctx.GetThreadPtr()->GetStopInfo(); in GetStopReasonExtendedInfoAsJSON() local
291 StructuredData::ObjectSP info = stop_info->GetExtendedInfo(); in GetStopReasonExtendedInfoAsJSON()
314 StopInfoSP stop_info = exe_ctx.GetThreadPtr()->GetStopInfo(); in GetStopReasonExtendedBacktraces() local
315 StructuredData::ObjectSP info = stop_info->GetExtendedInfo(); in GetStopReasonExtendedBacktraces()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp650 if (StopInfoSP stop_info = in CreateStopReasonWithMachException() local
653 return stop_info; in CreateStopReasonWithMachException()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2492 StopInfoSP stop_info = thread_sp->GetStopInfo(); in DidProcessStopAbnormally() local
2493 if (!stop_info) { in DidProcessStopAbnormally()
2500 const StopReason reason = stop_info->GetStopReason(); in DidProcessStopAbnormally()
2507 const auto stop_signal = static_cast<int32_t>(stop_info->GetValue()); in DidProcessStopAbnormally()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1463 StringExtractorGDBRemote &stop_info = *m_last_stop_packet; in UpdateThreadIDList() local
1464 const std::string &stop_info_str = std::string(stop_info.GetStringRef()); in UpdateThreadIDList()