Home
last modified time | relevance | path

Searched refs:thread_command (Results 1 – 6 of 6) sorted by relevance

/xnu-10002.41.9/osfmk/kdp/ml/x86_64/
H A Dkdp_vm.c58 *ptstate_size = sizeof(struct thread_command) + tstate_size; in kern_collectth_state_size()
73 *tstate_size = sizeof(struct thread_command) + per_thread_size; in kern_collect_userth_state_size()
83 struct thread_command *tc = (struct thread_command *)buffer; in kern_collect_userth_state()
107 struct thread_command *tc; in kern_collectth_state()
116 if (hoffset + sizeof(struct thread_command) > size) { in kern_collectth_state()
121 tc = (struct thread_command *) ((uintptr_t)buffer + hoffset); in kern_collectth_state()
124 hoffset += sizeof(struct thread_command); in kern_collectth_state()
/xnu-10002.41.9/osfmk/kdp/ml/arm/
H A Dkdp_vm.c287 *tstate_size = sizeof(struct thread_command) in kern_collectth_state_size()
312 struct thread_command *tc = (struct thread_command *)buffer; in kern_collectth_state()
411 *tstate_size = sizeof(struct thread_command) + per_thread_size; in kern_collect_userth_state_size()
436 struct thread_command *tc = buffer; in kern_collect_userth_state()
/xnu-10002.41.9/bsd/kern/
H A Dkern_core.c179 struct thread_command *tc; in collectth_state()
189 tc = (struct thread_command *) (header + hoffset); in collectth_state()
191 tc->cmdsize = (uint32_t)(sizeof(struct thread_command) in collectth_state()
193 hoffset += sizeof(struct thread_command); in collectth_state()
501 if (os_add_and_mul_overflow(tstate_size, sizeof(struct thread_command), thread_count, &rhs)) { in coredump()
H A Dmach_loader.c232 struct thread_command *tcp,
1240 (struct thread_command *) lcp, in parse_machfile()
2756 struct thread_command *tcp, in load_unixthread()
2779 sizeof(struct thread_command)), in load_unixthread()
2780 tcp->cmdsize - sizeof(struct thread_command), in load_unixthread()
2800 sizeof(struct thread_command)), in load_unixthread()
2801 tcp->cmdsize - sizeof(struct thread_command), in load_unixthread()
2816 (uint32_t *)(((vm_offset_t)tcp) + sizeof(struct thread_command)), in load_unixthread()
2817 tcp->cmdsize - sizeof(struct thread_command), in load_unixthread()
/xnu-10002.41.9/EXTERNAL_HEADERS/mach-o/
H A Dloader.h815 struct thread_command { struct
/xnu-10002.41.9/osfmk/kdp/
H A Dprocessor_core.c662 struct thread_command *tc = (struct thread_command *)thread_state; in coredump_save_thread_state()