Home
last modified time | relevance | path

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

/xnu-12377.61.12/tools/lldbmacros/
H A Dkext.py22 IterateLinkedList,
264 for kmod in IterateLinkedList(kern.globals.kmod, 'next'):
359 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.py356 for current_processor in IterateLinkedList(kern.globals.processor_list, 'processor_list') :
H A Dxnu.py534 for kval in IterateLinkedList(kmod_val, 'next'):
H A Dioreg.py150 for kval in IterateLinkedList(kern.globals.kmod, 'next'):
H A Dprocess.py1785 for processor in IterateLinkedList(kern.globals.processor_list, 'processor_list') :
H A Dmemory.py1919 for lockf_itr in IterateLinkedList(lockf_list, 'lf_next'):
3592 for kmod in IterateLinkedList(kmod_val, 'next'):
/xnu-12377.61.12/tools/lldbmacros/core/
H A Dkernelcore.py56 def IterateLinkedList(headval, field_name): function