Searched refs:tid_stop_info (Results 1 – 2 of 2) sorted by relevance
598 struct ThreadStopInfo tid_stop_info; in GetJSONThreadsInfo() local600 if (!thread->GetStopReason(tid_stop_info, description)) in GetJSONThreadsInfo()604 const int signum = tid_stop_info.details.signal.signo; in GetJSONThreadsInfo()611 tid_stop_info.reason, tid_stop_info.details.exception.type); in GetJSONThreadsInfo()630 const char *stop_reason = GetStopReasonString(tid_stop_info.reason); in GetJSONThreadsInfo()637 if ((tid_stop_info.reason == eStopReasonException) && in GetJSONThreadsInfo()638 tid_stop_info.details.exception.type) { in GetJSONThreadsInfo()640 "metype", static_cast<int64_t>(tid_stop_info.details.exception.type)); in GetJSONThreadsInfo()643 for (uint32_t i = 0; i < tid_stop_info.details.exception.data_count; in GetJSONThreadsInfo()646 static_cast<int64_t>(tid_stop_info.details.exception.data[i])); in GetJSONThreadsInfo()[all …]
2823 struct DNBThreadStopInfo tid_stop_info; in SendStopReplyPacketForThread() local2828 if (DNBThreadGetStopReason(pid, tid, &tid_stop_info)) { in SendStopReplyPacketForThread()2829 const bool did_exec = tid_stop_info.reason == eStopTypeExec; in SendStopReplyPacketForThread()2841 int signum = tid_stop_info.details.signal.signo; in SendStopReplyPacketForThread()2845 signum, tid_stop_info.details.exception.type); in SendStopReplyPacketForThread()2849 switch (tid_stop_info.details.exception.type) { in SendStopReplyPacketForThread()2869 if (tid_stop_info.details.exception.data_count == 2 && in SendStopReplyPacketForThread()2870 tid_stop_info.details.exception.data[0] == EXC_SOFT_SIGNAL) in SendStopReplyPacketForThread()2871 signum = static_cast<int>(tid_stop_info.details.exception.data[1]); in SendStopReplyPacketForThread()2992 } else if (tid_stop_info.details.exception.type) { in SendStopReplyPacketForThread()[all …]