Searched refs:bytes_traced (Results 1 – 4 of 4) sorted by relevance
| /xnu-11215.81.4/osfmk/arm/ |
| H A D | model_dep.c | 434 int bytes_traced = 0, bytes_remaining = 0, end_marker_bytes = 200; in do_print_all_backtraces() local 754 bytes_traced = kdp_stack_snapshot_bytes_traced(); in do_print_all_backtraces() 755 if (bytes_traced > 0 && !err) { in do_print_all_backtraces() 756 debug_buf_ptr += bytes_traced; in do_print_all_backtraces() 759 panic_info->eph_stackshot_len = bytes_traced; in do_print_all_backtraces() 768 …"\n** Stackshot Succeeded ** Bytes Traced %d (Uncompressed %d) **\n", bytes_traced, bytes_uncompre… in do_print_all_backtraces() 770 paniclog_append_noflush("\n** Stackshot Succeeded ** Bytes Traced %d **\n", bytes_traced); in do_print_all_backtraces() 789 … paniclog_append_noflush("\n!! Stackshot Failed !! Bytes Traced %d, err %d\n", bytes_traced, err); in do_print_all_backtraces()
|
| /xnu-11215.81.4/osfmk/i386/AT386/ |
| H A D | model_dep.c | 676 size_t bytes_traced = 0, bytes_uncompressed = 0, bytes_used = 0, bytes_remaining = 0; in RecordPanicStackshot() local 748 bytes_traced = (size_t) kdp_stack_snapshot_bytes_traced(); in RecordPanicStackshot() 785 bytes_traced = (size_t) kdp_stack_snapshot_bytes_traced(); in RecordPanicStackshot() 792 debug_buf_ptr += bytes_traced; in RecordPanicStackshot() 799 panic_info->mph_stackshot_len = (uint32_t) bytes_traced; in RecordPanicStackshot() 807 …nic Stackshot Succeeded ** Bytes Traced %zu (Uncompressed %zu) **\n", bytes_traced, bytes_uncompre… in RecordPanicStackshot() 809 kdb_printf("\n** In Memory Panic Stackshot Succeeded ** Bytes Traced %zu **\n", bytes_traced); in RecordPanicStackshot() 814 panic_stackshot_len = bytes_traced; in RecordPanicStackshot() 833 …kdb_printf("\n** In Memory Panic Stackshot Failed ** Bytes Traced %zu, err %d\n", bytes_traced, er… in RecordPanicStackshot()
|
| /xnu-11215.81.4/osfmk/kern/ |
| H A D | kern_stackshot.c | 1174 …e, uint64_t flags, uint64_t delta_since_timestamp, uint32_t pagetable_mask, unsigned *bytes_traced) in stack_snapshot_from_kernel() argument 1194 if ((buf == NULL) || (size <= 0) || (bytes_traced == NULL)) { in stack_snapshot_from_kernel() 1305 *bytes_traced = kdp_stack_snapshot_bytes_traced(); in stack_snapshot_from_kernel() 1308 error, (time_end - time_start), size, *bytes_traced); in stack_snapshot_from_kernel() 1319 uint32_t bytes_traced = 0; in stack_microstackshot() local 1352 bytes_traced = tracebuf_size; in stack_microstackshot() 1353 error = telemetry_gather(tracebuf, &bytes_traced, in stack_microstackshot() 1355 *retval = (int)bytes_traced; in stack_microstackshot() 1875 stackshot_remap_buffer(void *stackshotbuf, uint32_t bytes_traced, uint64_t out_buffer_addr, uint64_… in stackshot_remap_buffer() argument 1881 error = mach_vm_remap(current_map(), &stackshotbuf_user_addr, bytes_traced, 0, in stackshot_remap_buffer() [all …]
|
| H A D | debug.h | 701 uint64_t delta_since_timestamp, uint32_t pagetable_mask, unsigned *bytes_traced);
|