Lines Matching refs:thread
17 struct thread;
21 zx_status_t arch_get_general_regs(struct thread* thread, zx_thread_state_general_regs* out);
22 zx_status_t arch_set_general_regs(struct thread* thread, const zx_thread_state_general_regs* in);
24 zx_status_t arch_get_fp_regs(struct thread* thread, zx_thread_state_fp_regs* out);
25 zx_status_t arch_set_fp_regs(struct thread* thread, const zx_thread_state_fp_regs* in);
27 zx_status_t arch_get_vector_regs(struct thread* thread, zx_thread_state_vector_regs* out);
28 zx_status_t arch_set_vector_regs(struct thread* thread, const zx_thread_state_vector_regs* in);
30 zx_status_t arch_get_debug_regs(struct thread* thread, zx_thread_state_debug_regs* out);
31 zx_status_t arch_set_debug_regs(struct thread* thread, const zx_thread_state_debug_regs* in);
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);
37 zx_status_t arch_get_x86_register_fs(struct thread* thread, uint64_t* out);
38 zx_status_t arch_set_x86_register_fs(struct thread* thread, const uint64_t* in);
41 zx_status_t arch_get_x86_register_gs(struct thread* thread, uint64_t* out);
42 zx_status_t arch_set_x86_register_gs(struct thread* thread, const uint64_t* in);