Home
last modified time | relevance | path

Searched refs:IterateLinkedList (Results 1 – 8 of 8) sorted by relevance

/xnu-11215/tools/lldbmacros/
H A Dkext.py22 IterateLinkedList,
264 for kmod in IterateLinkedList(kern.globals.kmod, 'next'):
357 for kmod in IterateLinkedList(kern.globals.kmod, 'next'):
H A Dmisc.py288 processors = [p for p in IterateLinkedList(kern.globals.processor_list, 'processor_list')]
H A Dscheduler.py360 for current_processor in IterateLinkedList(kern.globals.processor_list, 'processor_list') :
H A Dxnu.py517 for kval in IterateLinkedList(kmod_val, 'next'):
H A Dioreg.py150 for kval in IterateLinkedList(kern.globals.kmod, 'next'):
H A Dprocess.py1757 for processor in IterateLinkedList(kern.globals.processor_list, 'processor_list') :
H A Dmemory.py1870 for lockf_itr in IterateLinkedList(lockf_list, 'lf_next'):
3527 for kmod in IterateLinkedList(kmod_val, 'next'):
/xnu-11215/tools/lldbmacros/core/
H A Dkernelcore.py52 def IterateLinkedList(headval, field_name): function