Home
last modified time | relevance | path

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

/xnu-11215/tools/lldbmacros/
H A Dworkqueue.py169 …for req in IterateSchedPriorityQueue(wq.wq_overcommit_queue, 'struct workq_threadreq_s', 'tr_entry…
171 …for req in IterateSchedPriorityQueue(wq.wq_constrained_queue, 'struct workq_threadreq_s', 'tr_entr…
173 … for req in IterateSchedPriorityQueue(wq.wq_special_queue, 'struct workq_threadreq_s', 'tr_entry'):
H A Dturnstile.py192 …for turnstile in IterateSchedPriorityQueue(thread.base_inheritor_queue, 'struct turnstile', 'ts_in…
206 …for turnstile in IterateSchedPriorityQueue(thread.sched_inheritor_queue, 'struct turnstile', 'ts_i…
H A Dwaitq.py100 for t in IterateSchedPriorityQueue(ts.ts_waitq.waitq_prio_queue,
104 for t in IterateSchedPriorityQueue(self._wq.waitq_prio_queue,
H A Dscheduler.py195 … for thread in IterateSchedPriorityQueue(runq, 'struct thread', 'th_clutch_pri_link'):
292 for thread in IterateSchedPriorityQueue(runq, 'struct thread', 'th_clutch_pri_link'):
/xnu-11215/tools/lldbmacros/core/
H A Dkernelcore.py190 def IterateSchedPriorityQueue(root, element_type, field_name): function