/openbsd/gnu/llvm/lldb/source/Plugins/Process/Linux/ |
H A D | NativeThreadLinux.cpp | 43 void LogThreadStopInfo(Log &log, const ThreadStopInfo &stop_info, in LogThreadStopInfo() argument 45 switch (stop_info.reason) { in LogThreadStopInfo() 51 stop_info.signo); in LogThreadStopInfo() 55 header, stop_info.signo); in LogThreadStopInfo() 59 header, stop_info.signo); in LogThreadStopInfo() 63 stop_info.signo); in LogThreadStopInfo() 67 stop_info.details.exception.type); in LogThreadStopInfo() 71 stop_info.signo); in LogThreadStopInfo() 87 static_cast<uint32_t>(stop_info.reason)); in LogThreadStopInfo() 112 bool NativeThreadLinux::GetStopReason(ThreadStopInfo &stop_info, in GetStopReason() argument [all …]
|
H A D | NativeThreadLinux.h | 40 bool GetStopReason(ThreadStopInfo &stop_info,
|
/openbsd/gnu/llvm/lldb/tools/debugserver/source/MacOSX/ |
H A D | MachException.cpp | 152 struct DNBThreadStopInfo *stop_info) const { in GetStopInfo() 154 memset(stop_info, 0, sizeof(struct DNBThreadStopInfo)); in GetStopInfo() 157 stop_info->reason = eStopTypeInvalid; in GetStopInfo() 162 stop_info->reason = eStopTypeException; in GetStopInfo() 164 stop_info->details.exception.type = exc_type; in GetStopInfo() 168 char *desc = stop_info->description; in GetStopInfo() 177 stop_info->details.exception.data_count = exc_data.size(); in GetStopInfo() 191 (uint64_t)stop_info->details.exception.data_count); in GetStopInfo() 194 desc < end_desc && idx < stop_info->details.exception.data_count; in GetStopInfo() 204 for (i = 0; i < stop_info->details.exception.data_count; i++) in GetStopInfo() [all …]
|
H A D | MachException.h | 84 bool GetStopInfo(struct DNBThreadStopInfo *stop_info) const;
|
H A D | MachThreadList.h | 58 struct DNBThreadStopInfo *stop_info) const;
|
H A D | MachThreadList.cpp | 89 nub_thread_t tid, struct DNBThreadStopInfo *stop_info) const { in GetThreadStoppedReason() 92 return thread_sp->GetStopException().GetStopInfo(stop_info); in GetThreadStoppedReason()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/mach-core/ |
H A D | ThreadMachCore.cpp | 110 StopInfoSP stop_info; in CalculateStopInfo() local 132 stop_info = in CalculateStopInfo() 141 if (stop_info) in CalculateStopInfo() 142 SetStopInfo(stop_info); in CalculateStopInfo()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/ |
H A D | NativeThreadWindows.cpp | 113 void NativeThreadWindows::SetStopReason(ThreadStopInfo stop_info, in SetStopReason() argument 116 m_stop_info = stop_info; in SetStopReason() 120 bool NativeThreadWindows::GetStopReason(ThreadStopInfo &stop_info, in GetStopReason() argument 130 stop_info = m_stop_info; in GetStopReason()
|
H A D | ProcessWindows.cpp | 374 StopInfoSP stop_info; in RefreshStateAfterStop() local 391 stop_info = StopInfo::CreateStopReasonWithBreakpointSiteID(*stop_thread, in RefreshStateAfterStop() 393 stop_thread->SetStopInfo(stop_info); in RefreshStateAfterStop() 412 stop_info = StopInfo::CreateStopReasonWithWatchpointID( in RefreshStateAfterStop() 414 stop_thread->SetStopInfo(stop_info); in RefreshStateAfterStop() 420 stop_info = StopInfo::CreateStopReasonToTrace(*stop_thread); in RefreshStateAfterStop() 421 stop_thread->SetStopInfo(stop_info); in RefreshStateAfterStop() 467 stop_info = StopInfo::CreateStopReasonWithBreakpointSiteID( in RefreshStateAfterStop() 476 stop_thread->SetStopInfo(stop_info); in RefreshStateAfterStop() 499 stop_info = StopInfo::CreateStopReasonWithException( in RefreshStateAfterStop() [all …]
|
H A D | NativeThreadWindows.h | 39 bool GetStopReason(ThreadStopInfo &stop_info, 51 void SetStopReason(ThreadStopInfo stop_info, std::string description);
|
H A D | NativeProcessWindows.cpp | 254 ThreadStopInfo stop_info; in SetStopReasonForThread() local 255 stop_info.reason = reason; in SetStopReasonForThread() 257 stop_info.signo = SIGTRAP; in SetStopReasonForThread() 260 stop_info.details.exception.type = 0; in SetStopReasonForThread() 261 stop_info.details.exception.data_count = 0; in SetStopReasonForThread() 264 thread.SetStopReason(stop_info, description); in SetStopReasonForThread()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/OpenBSD/ |
H A D | NativeThreadOpenBSD.cpp | 98 bool NativeThreadOpenBSD::GetStopReason(ThreadStopInfo &stop_info, in GetStopReason() argument 110 stop_info = m_stop_info; in GetStopReason()
|
H A D | NativeThreadOpenBSD.h | 37 bool GetStopReason(ThreadStopInfo &stop_info,
|
/openbsd/gnu/llvm/lldb/source/Target/ |
H A D | ThreadPlanTracer.cpp | 80 lldb::StopInfoSP stop_info = GetThread().GetStopInfo(); in TracerExplainsStop() local 81 return (stop_info->GetStopReason() == eStopReasonTrace); in TracerExplainsStop()
|
H A D | Thread.cpp | 701 StopInfo *stop_info = GetPrivateStopInfo().get(); in ShouldResume() local 702 if (stop_info) in ShouldResume() 703 stop_info->WillResume(resume_state); in ShouldResume() 1802 StructuredData::ObjectSP stop_info = m_stop_info_sp->GetExtendedInfo(); in GetDescription() local 1803 if (stop_info) { in GetDescription() 1804 stop_info->Dump(strm); in GetDescription()
|
/openbsd/gnu/llvm/lldb/include/lldb/Host/common/ |
H A D | NativeThreadProtocol.h | 36 virtual bool GetStopReason(ThreadStopInfo &stop_info,
|
/openbsd/gnu/usr.bin/binutils/gdb/ |
H A D | infrun.c | 945 int stop_info); 2787 print_stop_reason (enum inferior_stop_reason stop_reason, int stop_info) in print_stop_reason() argument 2816 target_signal_to_name (stop_info)); in print_stop_reason() 2821 target_signal_to_string (stop_info)); in print_stop_reason() 2828 annotate_exited (stop_info); in print_stop_reason() 2829 if (stop_info) in print_stop_reason() 2835 (unsigned int) stop_info); in print_stop_reason() 2854 target_signal_to_name (stop_info)); in print_stop_reason() 2859 target_signal_to_string (stop_info)); in print_stop_reason()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/NetBSD/ |
H A D | NativeThreadNetBSD.h | 36 bool GetStopReason(ThreadStopInfo &stop_info,
|
H A D | NativeThreadNetBSD.cpp | 229 bool NativeThreadNetBSD::GetStopReason(ThreadStopInfo &stop_info, in GetStopReason() argument 240 stop_info = m_stop_info; in GetStopReason()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/FreeBSD/ |
H A D | NativeThreadFreeBSD.h | 36 bool GetStopReason(ThreadStopInfo &stop_info,
|
H A D | NativeThreadFreeBSD.cpp | 217 bool NativeThreadFreeBSD::GetStopReason(ThreadStopInfo &stop_info, in GetStopReason() argument 228 stop_info = m_stop_info; in GetStopReason()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/minidump/ |
H A D | ProcessMinidump.cpp | 330 lldb::StopInfoSP stop_info; in RefreshStateAfterStop() local 345 stop_info = StopInfo::CreateStopReasonWithSignal( in RefreshStateAfterStop() 348 stop_info = StopInfoMachException::CreateStopReasonWithMachException( in RefreshStateAfterStop() 361 stop_info = StopInfo::CreateStopReasonWithException( in RefreshStateAfterStop() 365 stop_thread->SetStopInfo(stop_info); in RefreshStateAfterStop()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/Utility/ |
H A D | StopInfoMachException.cpp | 655 if (StopInfoSP stop_info = in CreateStopReasonWithMachException() local 658 return stop_info; in CreateStopReasonWithMachException()
|
/openbsd/gnu/llvm/lldb/source/API/ |
H A D | SBThread.cpp | 290 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()
|
/openbsd/gnu/llvm/lldb/tools/debugserver/source/ |
H A D | DNB.h | 196 DNBThreadStopInfo *stop_info);
|