Lines Matching refs:debug_info
238 struct debug_info *debug_info = ¤t->thread.debug; in hw_breakpoint_control() local
249 reg_enable = !debug_info->bps_disabled; in hw_breakpoint_control()
256 reg_enable = !debug_info->wps_disabled; in hw_breakpoint_control()
633 struct debug_info *debug_info; in breakpoint_handler() local
638 debug_info = ¤t->thread.debug; in breakpoint_handler()
673 debug_info->bps_disabled = 1; in breakpoint_handler()
677 if (debug_info->wps_disabled) in breakpoint_handler()
681 debug_info->suspended_step = 1; in breakpoint_handler()
747 struct debug_info *debug_info; in watchpoint_handler() local
752 debug_info = ¤t->thread.debug; in watchpoint_handler()
817 debug_info->wps_disabled = 1; in watchpoint_handler()
820 if (debug_info->bps_disabled) in watchpoint_handler()
824 debug_info->suspended_step = 1; in watchpoint_handler()
851 struct debug_info *debug_info = ¤t->thread.debug; in reinstall_suspended_bps() local
862 if (debug_info->bps_disabled) { in reinstall_suspended_bps()
863 debug_info->bps_disabled = 0; in reinstall_suspended_bps()
868 if (debug_info->wps_disabled) { in reinstall_suspended_bps()
869 debug_info->wps_disabled = 0; in reinstall_suspended_bps()
875 if (debug_info->suspended_step) { in reinstall_suspended_bps()
876 debug_info->suspended_step = 0; in reinstall_suspended_bps()
887 if (!debug_info->wps_disabled) in reinstall_suspended_bps()
918 struct debug_info *current_debug_info, *next_debug_info; in hw_breakpoint_thread_switch()