Home
last modified time | relevance | path

Searched refs:thread_state64 (Results 1 – 4 of 4) sorted by relevance

/xnu-8019.80.24/osfmk/kdp/ml/arm/
H A Dkdp_machdep.c147 struct arm_thread_state64 thread_state64; in kdp_getintegerstate()
153 bzero((char *) &thread_state64, sizeof(struct arm_thread_state64)); in kdp_getintegerstate()
155 saved_state_to_thread_state64(saved_state, &thread_state64); in kdp_getintegerstate()
157 bcopy((char *) &thread_state64, (char *) out_state, sizeof(struct arm_thread_state64)); in kdp_getintegerstate()
205 struct arm_thread_state64 thread_state64; in kdp_setintegerstate()
208 bcopy((char *) state_in, (char *) &thread_state64, sizeof(struct arm_thread_state64)); in kdp_setintegerstate()
212 thread_state64_to_saved_state(&thread_state64, saved_state); in kdp_setintegerstate()
213 set_saved_state_cpsr(saved_state, thread_state64.cpsr); /* override CPSR sanitization */ in kdp_setintegerstate()
/xnu-8019.80.24/bsd/dev/i386/
H A Dunix_signal.c114 static const xstate_info_t thread_state64[] = { variable
266 flavor = thread_state64[sig_xstate].flavor; in sendsig()
267 state_count = thread_state64[sig_xstate].state_count; in sendsig()
305 ua_sp -= thread_state64[sig_xstate].mcontext_size; in sendsig()
343 uctx64.uc_mcsize = thread_state64[sig_xstate].mcontext_size; in sendsig()
350 if (copyout((caddr_t)&mctx_store, ua_mctxp, thread_state64[sig_xstate].mcontext_size)) { in sendsig()
502 uctx32.uc_mcsize = thread_state64[sig_xstate].mcontext_size; in sendsig()
841 …if ((error = copyin(uctx64.uc_mcontext64, (void *)mctxp, thread_state64[sig_xstate].mcontext_size)… in sigreturn()
847 fs_flavor = thread_state64[sig_xstate].flavor; in sigreturn()
848 fs_count = thread_state64[sig_xstate].state_count; in sigreturn()
/xnu-8019.80.24/osfmk/arm64/
H A Dstatus.c220 (void)saved_state_to_thread_state64(saved_state, thread_state64(unified_state)); in handle_get_arm_thread_state()
319 ts64 = thread_state64(unified_state); in machine_thread_state_convert_to_user()
410 ts64 = thread_state64(unified_state); in machine_thread_state_convert_from_user()
/xnu-8019.80.24/osfmk/mach/arm/
H A Dthread_status.h269 thread_state64(arm_unified_thread_state_t *its) in thread_state64() function