Searched refs:tstate_size (Results 1 - 6 of 6) sorted by relevance

/darwin-on-arm/xnu/osfmk/kdp/ml/arm/
H A Dkdp_arm_common.c184 size_t command_size = 0, header_size = 0, tstate_size = 0; local
207 tstate_size = sizeof(struct thread_command) + kern_collectth_state_size();
210 tstate_size;
278 if (tstate_size > 0) {
279 char tstate[tstate_size];
281 kern_collectth_state (current_thread(), tstate, tstate_size); local
288 if ((ret = kdp_send_crashdump_data (KDP_DATA, NULL, tstate_size, tstate)) < 0) {
293 hoffset += tstate_size;
H A Dkdp_vm.c53 size_t tstate_size = 0; local
56 tstate_size += sizeof(arm_state_hdr_t) +
59 return tstate_size;
/darwin-on-arm/xnu/osfmk/kdp/ml/i386/
H A Dkdp_vm.c50 size_t tstate_size = 0; local
53 tstate_size += sizeof(x86_state_hdr_t) +
56 return tstate_size;
H A Dkdp_x86_common.c552 size_t command_size = 0, header_size = 0, tstate_size = 0; local
575 tstate_size = sizeof(struct thread_command) + kern_collectth_state_size();
578 tstate_size;
645 if (tstate_size > 0) {
646 char tstate[tstate_size];
648 kern_collectth_state (current_thread(), tstate, tstate_size); local
655 if ((ret = kdp_send_crashdump_data (KDP_DATA, NULL, tstate_size, tstate)) < 0) {
660 hoffset += tstate_size;
/darwin-on-arm/xnu/osfmk/kdp/ml/x86_64/
H A Dkdp_vm.c50 size_t tstate_size = 0; local
53 tstate_size += sizeof(x86_state_hdr_t) +
56 return tstate_size;
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_core.c97 int tstate_size; member in struct:__anon118
174 + t->tstate_size;
223 int command_size, header_size, tstate_size; local
314 tstate_size = 0;
316 tstate_size += sizeof(mythread_state_flavor_t) +
320 tstate_size*thread_count;
477 tir1.tstate_size = tstate_size;

Completed in 74 milliseconds