Home
last modified time | relevance | path

Searched refs:IterateCircleQueue (Results 1 – 4 of 4) sorted by relevance

/xnu-12377.61.12/tools/lldbmacros/
H A Dwaitq.py100 for t in IterateCircleQueue(self._wq.waitq_queue, 'thread', 'wait_links'):
103 for t in IterateCircleQueue(_getSafeQ(self._wq).waitq_queue, 'thread', 'wait_links'):
128 for link in IterateCircleQueue(self._wq.waitq_links, 'struct waitq_link', 'wql_qlink'):
147 for l in IterateCircleQueue(wqs.wqset_links, 'struct waitq_link', 'wql_slink'):
149 for l in IterateCircleQueue(wqs.wqset_preposts, 'struct waitq_link', 'wql_slink'):
H A Dipc.py223 for kmsgp in IterateCircleQueue(
1452 for p_kmsgp in IterateCircleQueue(
1483 for p_kmsgp in IterateCircleQueue(
1569 for kmsgp in IterateCircleQueue(
1713 for kmsgp in IterateCircleQueue(
H A Dscheduler.py183 …for clutch_bucket in IterateCircleQueue(clutch_bucket_circleq, 'struct sched_clutch_bucket', 'scb_…
208 for thread in IterateCircleQueue(thread_circleq, 'struct thread', 'runq_links'):
264 …for clutch_bucket in IterateCircleQueue(clutch_bucket_circleq, 'struct sched_clutch_bucket', 'scb_…
/xnu-12377.61.12/tools/lldbmacros/core/
H A Dkernelcore.py128 def IterateCircleQueue(queue_head, element_type, field_name): function