Home
last modified time | relevance | path

Searched refs:zstack_record (Results 1 – 2 of 2) sorted by relevance

/xnu-8019.80.24/osfmk/kern/
H A Dbtlog.c887 btlog_record_t *zstack_record; in get_btlog_records() local
905 zstack_record = lookup_btrecord(btlog, zstack_index); in get_btlog_records()
906 current_rec->operation_type = (uint32_t)(zstack_record->operation); in get_btlog_records()
907 current_rec->ref_count = zstack_record->ref_count; in get_btlog_records()
911 current_rec->bt[frame] = (uint64_t)VM_KERNEL_UNSLIDE(zstack_record->bt[frame]); in get_btlog_records()
915 zstack_index = zstack_record->next; in get_btlog_records()
/xnu-8019.80.24/tools/lldbmacros/
H A Dmemory.py1117zstack_record = kern.GetValueFromAddress(btrecords + zstack_record_offset, 'btlog_record_t *')
1118 if int(zstack_record.ref_count)!=0:
1119 … ShowZStackRecord(zstack_record, zstack_index, depth, unsigned(btlog_ptr.active_element_count))
1152zstack_record = kern.GetValueFromAddress(btrecords + zstack_record_offset, 'btlog_record_t *')
1153 … ShowZStackRecord(zstack_record, zstack_index, depth, unsigned(btlog_ptr.active_element_count))
1154 zstack_index = zstack_record.next
1608 def GetBtlogBacktrace(depth, zstack_record): argument
1618 if not zstack_record:
1623 frame_pc = zstack_record.bt[frame]
1635 def ShowZStackRecord(zstack_record, zstack_index, btrecord_btdepth, elements_count): argument
[all …]