Lines Matching refs:exception
2426 DNBLogThreadedIf (LOG_RNB_PROC, "%8d %s got signal signo = %u, exc_type = %u", (uint32_t)m_comm.Timer().ElapsedMicroSeconds(true), __FUNCTION__, signum, tid_stop_info.details.exception.type);
2430 switch (tid_stop_info.details.exception.type)
2439 if (tid_stop_info.details.exception.data_count == 2 &&
2440 tid_stop_info.details.exception.data[0] == EXC_SOFT_SIGNAL)
2441 signum = tid_stop_info.details.exception.data[1];
2524 else if (tid_stop_info.details.exception.type)
2526 ostrm << "metype:" << std::hex << tid_stop_info.details.exception.type << ";";
2527 ostrm << "mecount:" << std::hex << tid_stop_info.details.exception.data_count << ";";
2528 for (int i = 0; i < tid_stop_info.details.exception.data_count; ++i)
2529 ostrm << "medata:" << std::hex << tid_stop_info.details.exception.data[i] << ";";
3933 // On armv7 we use "synchronous" watchpoints which means the exception is delivered before the instruction executes.