Lines Matching refs:exc_code
271 uint64_t exc_code, in CreateStopReasonWithMachException() argument
295 switch (exc_code) in CreateStopReasonWithMachException()
319 if (exc_code == 0x10003) // EXC_SOFT_SIGNAL in CreateStopReasonWithMachException()
363 if (exc_code == 1) // EXC_I386_SGL in CreateStopReasonWithMachException()
382 else if (exc_code == 2 || // EXC_I386_BPT in CreateStopReasonWithMachException()
383 exc_code == 3) // EXC_I386_BPTFLT in CreateStopReasonWithMachException()
386 if (exc_code == 3) in CreateStopReasonWithMachException()
397 is_actual_breakpoint = exc_code == 1; // EXC_PPC_BREAKPOINT in CreateStopReasonWithMachException()
401 if (exc_code == 0x102) // EXC_ARM_DA_DEBUG in CreateStopReasonWithMachException()
420 else if (exc_code == 1) // EXC_ARM_BREAKPOINT in CreateStopReasonWithMachException()
425 …else if (exc_code == 0) // FIXME not EXC_ARM_BREAKPOINT but a kernel is currently returning this s… in CreateStopReasonWithMachException()
479 …return StopInfoSP(new StopInfoMachException (thread, exc_type, exc_data_count, exc_code, exc_sub_c… in CreateStopReasonWithMachException()