Home
last modified time | relevance | path

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

/xnu-10063.101.15/osfmk/kdp/
H A Duser_core.c99 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 Dkdp_core.c657 uint64_t thread_state_size = 0, thread_count = 0; in kern_dump_save_summary() local
671 kern_collectth_state_size(&thread_count, &thread_state_size); in kern_dump_save_summary()
674 thread_count, thread_state_size, 0, context); in kern_dump_save_summary()
705 uint64_t thread_state_size = 0, thread_count = 0; in kern_dump_save_thread_state() local
707 kern_collectth_state_size(&thread_count, &thread_state_size); in kern_dump_save_thread_state()
709 if (thread_state_size > 0) { in kern_dump_save_thread_state()
712 kern_collectth_state(current_thread(), buf, thread_state_size, &iter); in kern_dump_save_thread_state()
H A Dprocessor_core.h78 uint64_t thread_count, uint64_t thread_state_size,
H A Dprocessor_core.c412 uint64_t thread_count, uint64_t thread_state_size, in coredump_save_summary() argument
421 || (thread_state_size > KERN_COREDUMP_THREADSIZE_MAX)) { in coredump_save_summary()
426 if (core_context->core_type != SECURE_COREDUMP && (!thread_count || !thread_state_size)) { in coredump_save_summary()
434 core_context->core_thread_state_size = thread_state_size; in coredump_save_summary()