Home
last modified time | relevance | path

Searched refs:IterateLinkageChain (Results 1 – 6 of 6) sorted by relevance

/xnu-12377.61.12/tools/lldbmacros/
H A Dexclaves.py6 from core.kernelcore import IterateLinkageChain
68 … for elem in IterateLinkageChain(addressof(domain_heads[domain_idx]), 'table_item_t *', 'i_chain'):
96 … for elem in IterateLinkageChain(entry_heads[entry_idx], 'table_item_t *', 'i_chain'):
141 … for elem in IterateLinkageChain(addressof(bucket[idx].htb_head), 'esync_t *', 'es_link'):
H A Dulock.py44 … for ull in IterateLinkageChain(addressof(buckets[i].ulb_head), 'ull_t *', 'ull_hash_link'):
H A Dmisc.py621 for elem in IterateLinkageChain(qhead, elem_type, field_name):
H A Dpmap.py1564 for surt_page in IterateLinkageChain(kern.globals.surt_list, 'surt_page_t *', 'surt_chain'):
H A Dprocess.py579 for task in IterateLinkageChain(queue, 'task *', field_path):
/xnu-12377.61.12/tools/lldbmacros/core/
H A Dkernelcore.py99 def IterateLinkageChain(queue_head, element_type, field_name): function