Home
last modified time | relevance | path

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

/xnu-11215/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.py604 for elem in IterateLinkageChain(qhead, elem_type, field_name):
H A Dprocess.py573 for task in IterateLinkageChain(queue, 'task *', field_path):
/xnu-11215/tools/lldbmacros/core/
H A Dkernelcore.py95 def IterateLinkageChain(queue_head, element_type, field_name): function