Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
HDThreadPlanTracer.cpp79 lldb::StopInfoSP stop_info = GetThread().GetStopInfo(); in TracerExplainsStop() local
80 return (stop_info->GetStopReason() == eStopReasonTrace); in TracerExplainsStop()
HDThread.cpp685 StopInfo *stop_info = GetPrivateStopInfo().get(); in ShouldResume() local
686 if (stop_info) in ShouldResume()
687 stop_info->WillResume(resume_state); in ShouldResume()
1808 StructuredData::ObjectSP stop_info = m_stop_info_sp->GetExtendedInfo(); in GetDescription() local
1809 if (stop_info) { in GetDescription()
1810 stop_info->Dump(strm); in GetDescription()
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Host/common/
HDNativeThreadProtocol.h36 virtual bool GetStopReason(ThreadStopInfo &stop_info,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
HDProcessMinidump.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-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
HDNativeThreadNetBSD.h36 bool GetStopReason(ThreadStopInfo &stop_info,
HDNativeThreadNetBSD.cpp228 bool NativeThreadNetBSD::GetStopReason(ThreadStopInfo &stop_info, in GetStopReason() argument
239 stop_info = m_stop_info; in GetStopReason()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
HDNativeThreadFreeBSD.h36 bool GetStopReason(ThreadStopInfo &stop_info,
HDNativeThreadFreeBSD.cpp216 bool NativeThreadFreeBSD::GetStopReason(ThreadStopInfo &stop_info, in GetStopReason() argument
227 stop_info = m_stop_info; in GetStopReason()
/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
HDSBThread.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-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
HDStopInfoMachException.cpp653 if (StopInfoSP stop_info = in CreateStopReasonWithMachException() local
656 return stop_info; in CreateStopReasonWithMachException()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
HDCommandInterpreter.cpp2505 StopInfoSP stop_info = thread_sp->GetStopInfo(); in DidProcessStopAbnormally() local
2506 if (!stop_info) { in DidProcessStopAbnormally()
2513 const StopReason reason = stop_info->GetStopReason(); in DidProcessStopAbnormally()
2520 const auto stop_signal = static_cast<int32_t>(stop_info->GetValue()); in DidProcessStopAbnormally()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
HDProcessGDBRemote.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()