Searched refs:stop_info (Results 1 - 16 of 16) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/
H A DMachException.cpp129 bool MachException::Data::GetStopInfo(struct ThreadStopInfo *stop_info, argument
132 if (!stop_info)
136 memset(stop_info, 0, sizeof(struct ThreadStopInfo));
139 stop_info->reason = eStopReasonInvalid;
144 stop_info->reason = eStopReasonException;
146 stop_info->details.exception.type = exc_type;
155 stop_info->details.exception.data_count = exc_data.size();
166 (uint64_t)stop_info->details.exception.data_count);
168 for (idx = 0; idx < stop_info->details.exception.data_count; ++idx) {
171 ((idx + 1 == stop_info
[all...]
H A DMachException.h82 bool GetStopInfo(ThreadStopInfo *stop_info, const UnixSignals &signals,
H A DNativeThreadDarwin.h53 bool GetStopReason(ThreadStopInfo &stop_info,
H A DNativeThreadListDarwin.h84 bool GetThreadStoppedReason (nub_thread_t tid, struct DNBThreadStopInfo *stop_info) const;
H A DNativeThreadDarwin.cpp85 bool NativeThreadDarwin::GetStopReason(ThreadStopInfo &stop_info, argument
H A DNativeThreadListDarwin.cpp115 NativeThreadListDarwin::GetThreadStoppedReason(nub_thread_t tid, struct DNBThreadStopInfo *stop_info) const
119 return thread_sp->GetStopException().GetStopInfo(stop_info);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeThreadProtocol.h32 virtual bool GetStopReason(ThreadStopInfo &stop_info,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeThreadNetBSD.h36 bool GetStopReason(ThreadStopInfo &stop_info,
H A DNativeThreadNetBSD.cpp204 bool NativeThreadNetBSD::GetStopReason(ThreadStopInfo &stop_info, argument
216 stop_info = m_stop_info;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanTracer.cpp70 lldb::StopInfoSP stop_info = m_thread.GetStopInfo(); local
71 return (stop_info->GetStopReason() == eStopReasonTrace);
H A DThread.cpp660 StopInfo *stop_info = GetPrivateStopInfo().get(); local
661 if (stop_info)
662 stop_info->WillResume(resume_state);
1964 StructuredData::ObjectSP stop_info = m_stop_info_sp->GetExtendedInfo(); local
1965 if (stop_info) {
1966 stop_info->Dump(strm);
/freebsd-11-stable/contrib/gdb/gdb/
H A Dinfrun.c1004 int stop_info);
3120 print_stop_reason (enum inferior_stop_reason stop_reason, int stop_info)
3149 target_signal_to_name (stop_info));
3154 target_signal_to_string (stop_info));
3161 annotate_exited (stop_info);
3162 if (stop_info)
3168 (unsigned int) stop_info);
3187 target_signal_to_name (stop_info));
3192 target_signal_to_string (stop_info));
3115 print_stop_reason(enum inferior_stop_reason stop_reason, int stop_info) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.cpp263 lldb::StopInfoSP stop_info; local
278 stop_info = StopInfo::CreateStopReasonWithSignal(
281 stop_info = StopInfoMachException::CreateStopReasonWithMachException(
294 stop_info = StopInfo::CreateStopReasonWithException(
298 stop_thread->SetStopInfo(stop_info);
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBThread.cpp279 StopInfoSP stop_info = exe_ctx.GetThreadPtr()->GetStopInfo();
280 StructuredData::ObjectSP info = stop_info->GetExtendedInfo();
306 StopInfoSP stop_info = exe_ctx.GetThreadPtr()->GetStopInfo(); local
307 StructuredData::ObjectSP info = stop_info->GetExtendedInfo();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2171 StopInfoSP stop_info = thread_sp->GetStopInfo(); local
2172 if (!stop_info)
2175 const StopReason reason = stop_info->GetStopReason();
2180 const auto stop_signal = static_cast<int32_t>(stop_info->GetValue());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1580 StringExtractorGDBRemote &stop_info = m_stop_packet_stack[i];
1581 const std::string &stop_info_str = stop_info.GetStringRef();
2377 StringExtractorGDBRemote stop_info = m_stop_packet_stack[i];
2379 SetThreadStopInfo(stop_info);
3657 StringExtractorGDBRemote stop_info(pkt.c_str() + 5);
3660 SetLastStopPacket(stop_info);

Completed in 247 milliseconds