Home
last modified time | relevance | path

Searched refs:exc_code (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp382 switch (exc_code) { in CreateStopReasonWithMachException()
405 if (exc_code == 0x10003) // EXC_SOFT_SIGNAL in CreateStopReasonWithMachException()
450 if (exc_code == 1) // EXC_I386_SGL in CreateStopReasonWithMachException()
477 } else if (exc_code == 2 || // EXC_I386_BPT in CreateStopReasonWithMachException()
478 exc_code == 3) // EXC_I386_BPTFLT in CreateStopReasonWithMachException()
481 if (exc_code == 3) in CreateStopReasonWithMachException()
492 is_actual_breakpoint = exc_code == 1; // EXC_PPC_BREAKPOINT in CreateStopReasonWithMachException()
497 if (exc_code == 0x102) // EXC_ARM_DA_DEBUG in CreateStopReasonWithMachException()
517 } else if (exc_code == 1) // EXC_ARM_BREAKPOINT in CreateStopReasonWithMachException()
539 if (exc_code == 0x102) // EXC_ARM_DA_DEBUG in CreateStopReasonWithMachException()
[all …]
H A DStopInfoMachException.h25 uint32_t exc_data_count, uint64_t exc_code, in StopInfoMachException() argument
28 m_exc_code(exc_code), m_exc_subcode(exc_subcode) {} in StopInfoMachException()
43 uint64_t exc_code, uint64_t exc_sub_code, uint64_t exc_sub_sub_code,