Lines Matching refs:debug_state
368 static void print_debug_state(const x86_debug_state_t* debug_state) { in print_debug_state() argument
370 debug_state->dr[0], in print_debug_state()
371 debug_state->dr[1], in print_debug_state()
372 debug_state->dr[2], in print_debug_state()
373 debug_state->dr[3], in print_debug_state()
374 debug_state->dr6, in print_debug_state()
375 debug_state->dr7); in print_debug_state()
384 out->dr[0] = thread->arch.debug_state.dr[0]; in arch_get_debug_regs()
385 out->dr[1] = thread->arch.debug_state.dr[1]; in arch_get_debug_regs()
386 out->dr[2] = thread->arch.debug_state.dr[2]; in arch_get_debug_regs()
387 out->dr[3] = thread->arch.debug_state.dr[3]; in arch_get_debug_regs()
388 out->dr6 = thread->arch.debug_state.dr6; in arch_get_debug_regs()
389 out->dr7 = thread->arch.debug_state.dr7; in arch_get_debug_regs()
424 x86_read_hw_debug_regs(&thread->arch.debug_state); in arch_set_debug_regs()