Searched refs:tid_stop_info (Results 1 – 2 of 2) sorted by relevance
737 struct ThreadStopInfo tid_stop_info; in GetJSONThreadsInfo() local739 if (!thread.GetStopReason(tid_stop_info, description)) in GetJSONThreadsInfo()743 const int signum = tid_stop_info.signo; in GetJSONThreadsInfo()750 tid_stop_info.reason, tid_stop_info.details.exception.type); in GetJSONThreadsInfo()769 const char *stop_reason = GetStopReasonString(tid_stop_info.reason); in GetJSONThreadsInfo()776 if ((tid_stop_info.reason == eStopReasonException) && in GetJSONThreadsInfo()777 tid_stop_info.details.exception.type) { in GetJSONThreadsInfo()779 "metype", static_cast<int64_t>(tid_stop_info.details.exception.type)); in GetJSONThreadsInfo()782 for (uint32_t i = 0; i < tid_stop_info.details.exception.data_count; in GetJSONThreadsInfo()785 static_cast<int64_t>(tid_stop_info.details.exception.data[i])); in GetJSONThreadsInfo()[all …]
2693 struct DNBThreadStopInfo tid_stop_info; in SendStopReplyPacketForThread() local2698 if (DNBThreadGetStopReason(pid, tid, &tid_stop_info)) { in SendStopReplyPacketForThread()2699 const bool did_exec = tid_stop_info.reason == eStopTypeExec; in SendStopReplyPacketForThread()2711 int signum = tid_stop_info.details.signal.signo; in SendStopReplyPacketForThread()2715 signum, tid_stop_info.details.exception.type); in SendStopReplyPacketForThread()2719 switch (tid_stop_info.details.exception.type) { in SendStopReplyPacketForThread()2739 if (tid_stop_info.details.exception.data_count == 2 && in SendStopReplyPacketForThread()2740 tid_stop_info.details.exception.data[0] == EXC_SOFT_SIGNAL) in SendStopReplyPacketForThread()2741 signum = static_cast<int>(tid_stop_info.details.exception.data[1]); in SendStopReplyPacketForThread()2863 } else if (tid_stop_info.details.exception.type) { in SendStopReplyPacketForThread()[all …]