Lines Matching refs:debug_info
234 struct debug_info *debug_info = ¤t->thread.debug; in hw_breakpoint_control() local
245 reg_enable = !debug_info->bps_disabled; in hw_breakpoint_control()
252 reg_enable = !debug_info->wps_disabled; in hw_breakpoint_control()
589 struct debug_info *debug_info; in breakpoint_handler() local
594 debug_info = ¤t->thread.debug; in breakpoint_handler()
629 debug_info->bps_disabled = 1; in breakpoint_handler()
633 if (debug_info->wps_disabled) in breakpoint_handler()
637 debug_info->suspended_step = 1; in breakpoint_handler()
665 struct debug_info *debug_info; in watchpoint_handler() local
670 debug_info = ¤t->thread.debug; in watchpoint_handler()
732 debug_info->wps_disabled = 1; in watchpoint_handler()
735 if (debug_info->bps_disabled) in watchpoint_handler()
739 debug_info->suspended_step = 1; in watchpoint_handler()
765 struct debug_info *debug_info = ¤t->thread.debug; in reinstall_suspended_bps() local
776 if (debug_info->bps_disabled) { in reinstall_suspended_bps()
777 debug_info->bps_disabled = 0; in reinstall_suspended_bps()
782 if (debug_info->wps_disabled) { in reinstall_suspended_bps()
783 debug_info->wps_disabled = 0; in reinstall_suspended_bps()
789 if (debug_info->suspended_step) { in reinstall_suspended_bps()
790 debug_info->suspended_step = 0; in reinstall_suspended_bps()
801 if (!debug_info->wps_disabled) in reinstall_suspended_bps()
831 struct debug_info *current_debug_info, *next_debug_info; in hw_breakpoint_thread_switch()