Lines Matching refs:stop_info
205 MachException::Data::GetStopInfo(struct DNBThreadStopInfo *stop_info) const in GetStopInfo()
208 memset(stop_info, 0, sizeof(struct DNBThreadStopInfo)); in GetStopInfo()
210 stop_info->reason = eStopTypeException; in GetStopInfo()
212 stop_info->details.exception.type = exc_type; in GetStopInfo()
216 char *desc = stop_info->description; in GetStopInfo()
223 stop_info->details.exception.data_count = exc_data.size(); in GetStopInfo()
240 …desc += snprintf(desc, end_desc - desc, " data[%llu] = {", (uint64_t)stop_info->details.exception.… in GetStopInfo()
242 for (idx = 0; desc < end_desc && idx < stop_info->details.exception.data_count; ++idx) in GetStopInfo()
243 …esc, end_desc - desc, "0x%llx%c", (uint64_t)exc_data[idx], ((idx + 1 == stop_info->details.excepti… in GetStopInfo()
249 for (i=0; i<stop_info->details.exception.data_count; i++) in GetStopInfo()
250 stop_info->details.exception.data[i] = exc_data[i]; in GetStopInfo()