Searched refs:thread_state_size (Results 1 – 4 of 4) sorted by relevance
| /xnu-12377.1.9/osfmk/kdp/ |
| H A D | user_core.c | 99 uint64_t thread_state_size = 0, thread_count = 0; in user_dump_save_summary() local 112 kern_collect_userth_state_size(uccontext->task, &thread_count, &thread_state_size); in user_dump_save_summary() 114 thread_count, thread_state_size, 0, context); in user_dump_save_summary() 158 uint64_t thread_state_size = 0, thread_count = 0; in user_dump_save_thread_state() local 161 kern_collect_userth_state_size(uccontext->task, &thread_count, &thread_state_size); in user_dump_save_thread_state() 163 kern_collect_userth_state(uccontext->task, thread, buf, thread_state_size); in user_dump_save_thread_state()
|
| H A D | kdp_core.c | 648 uint64_t thread_state_size = 0, thread_count = 0; in kern_dump_save_summary() local 662 kern_collectth_state_size(&thread_count, &thread_state_size); in kern_dump_save_summary() 665 thread_count, thread_state_size, 0, context); in kern_dump_save_summary() 696 uint64_t thread_state_size = 0, thread_count = 0; in kern_dump_save_thread_state() local 698 kern_collectth_state_size(&thread_count, &thread_state_size); in kern_dump_save_thread_state() 700 if (thread_state_size > 0) { in kern_dump_save_thread_state() 703 kern_collectth_state(current_thread(), buf, thread_state_size, &iter); in kern_dump_save_thread_state()
|
| H A D | processor_core.h | 78 uint64_t thread_count, uint64_t thread_state_size,
|
| H A D | processor_core.c | 405 uint64_t thread_count, uint64_t thread_state_size, in coredump_save_summary() argument 414 || (thread_state_size > KERN_COREDUMP_THREADSIZE_MAX)) { in coredump_save_summary() 423 && (!thread_count || !thread_state_size)) { in coredump_save_summary() 431 core_context->core_thread_state_size = thread_state_size; in coredump_save_summary()
|