Home
last modified time | relevance | path

Searched refs:single_step (Results 1 – 5 of 5) sorted by relevance

/kernel/include/arch/
A Ddebugger.h33 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);
/kernel/arch/arm64/
A Ddebugger.cpp70 zx_status_t arch_get_single_step(struct thread* thread, bool* single_step) { in arch_get_single_step() argument
82 *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() argument
94 if (single_step) { in arch_set_single_step()
/kernel/object/
A Dthread_dispatcher.cpp938 bool single_step; in ReadState() local
939 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() local
996 if (*single_step != 0 && *single_step != 1) in WriteState()
998 return arch_set_single_step(&thread_, !!*single_step); in WriteState()
/kernel/arch/x86/
A Ddebugger.cpp261 zx_status_t arch_get_single_step(struct thread* thread, bool* single_step) { in arch_get_single_step() argument
282 *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() argument
307 if (single_step) { in arch_set_single_step()
/kernel/syscalls/
A Dtask.cpp98 uint32_t single_step; // ZX_THREAD_STATE_SINGLE_STEP member

Completed in 17 milliseconds