Lines Matching defs:reason
54 def _translate_stop_reason(self, reason):
55 if reason == self._interface.eStopReasonNone:
57 if reason == self._interface.eStopReasonBreakpoint:
59 if reason == self._interface.eStopReasonPlanComplete:
61 if reason == self._interface.eStopReasonThreadExiting:
63 if reason == self._interface.eStopReasonException:
146 # When the stop reason is eStopReasonBreakpoint, GetStopReasonDataCount
210 # but (3) the breakpoint is not reported as the stop reason, then
215 # reason with "breakpoint hit" when we stopped at a breakpoint,
220 # with step-completed stop reason, then when we step again,
222 # a breakpoint-hit stop reason. So we need to step twice per line.
303 reason = self._translate_stop_reason(self._thread.GetStopReason())
308 stop_reason=reason,