Searched refs:single_step (Results 1 – 5 of 5) sorted by relevance
33 zx_status_t arch_get_single_step(struct thread* thread, bool* single_step);34 zx_status_t arch_set_single_step(struct thread* thread, bool single_step);
70 zx_status_t arch_get_single_step(struct thread* thread, bool* single_step) { in arch_get_single_step() argument82 *single_step = mdscr_ss_enable && spsr_ss_enable; in arch_get_single_step()86 zx_status_t arch_set_single_step(struct thread* thread, bool single_step) { in arch_set_single_step() argument94 if (single_step) { in arch_set_single_step()
938 bool single_step; in ReadState() local939 zx_status_t status = arch_get_single_step(&thread_, &single_step); in ReadState()943 static_cast<zx_thread_state_single_step_t>(single_step); in ReadState()994 const zx_thread_state_single_step_t* single_step = in WriteState() local996 if (*single_step != 0 && *single_step != 1) in WriteState()998 return arch_set_single_step(&thread_, !!*single_step); in WriteState()
261 zx_status_t arch_get_single_step(struct thread* thread, bool* single_step) { in arch_get_single_step() argument282 *single_step = !!(*flags & X86_FLAGS_TF); in arch_get_single_step()286 zx_status_t arch_set_single_step(struct thread* thread, bool single_step) { in arch_set_single_step() argument307 if (single_step) { in arch_set_single_step()
98 uint32_t single_step; // ZX_THREAD_STATE_SINGLE_STEP member
Completed in 17 milliseconds