Home
last modified time | relevance | path

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

/xnu-8019.80.24/osfmk/kern/
H A Dbtlog.c888 btlog_recordindex_t zstack_index = BTLOG_RECORDINDEX_NONE; in get_btlog_records() local
900 zstack_index = btlog->head; in get_btlog_records()
904 while (recs_copied < count && (zstack_index != BTLOG_RECORDINDEX_NONE)) { in get_btlog_records()
905 zstack_record = lookup_btrecord(btlog, zstack_index); in get_btlog_records()
915 zstack_index = zstack_record->next; in get_btlog_records()
/xnu-8019.80.24/tools/lldbmacros/
H A Dmemory.py1105 zstack_index = ArgumentStringToInt(cmd_args[1])
1112 if (zstack_index + count) > max_count:
1113 count = max_count - zstack_index
1115 while count and (zstack_index != 0xffffff):
1116 zstack_record_offset = zstack_index * btrecord_size
1119 … ShowZStackRecord(zstack_record, zstack_index, depth, unsigned(btlog_ptr.active_element_count))
1120 zstack_index += 1
1146 zstack_index = zstack_head
1150 while count and (zstack_index != 0xffffff):
1151 zstack_record_offset = zstack_index * btrecord_size
[all …]