Home | History | Annotate | Download | only in MacOSX

Lines Matching refs:stop_info

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