Home
last modified time | relevance | path

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

/xnu-8019.80.24/tools/lldbmacros/
H A Dworkqueue.py164 …for req in IterateSchedPriorityQueue(wq.wq_overcommit_queue, 'struct workq_threadreq_s', 'tr_entry…
166 …for req in IterateSchedPriorityQueue(wq.wq_constrained_queue, 'struct workq_threadreq_s', 'tr_entr…
168 … for req in IterateSchedPriorityQueue(wq.wq_special_queue, 'struct workq_threadreq_s', 'tr_entry'):
H A Dturnstile.py161 …for turnstile in IterateSchedPriorityQueue(thread.base_inheritor_queue, 'struct turnstile', 'ts_in…
175 …for turnstile in IterateSchedPriorityQueue(thread.sched_inheritor_queue, 'struct turnstile', 'ts_i…
H A Dscheduler.py202 … for thread in IterateSchedPriorityQueue(runq, 'struct thread', 'th_clutch_pri_link'):
299 for thread in IterateSchedPriorityQueue(runq, 'struct thread', 'th_clutch_pri_link'):
/xnu-8019.80.24/tools/lldbmacros/core/
H A Dkernelcore.py251 def IterateSchedPriorityQueue(root, element_type, field_name): function