Home
last modified time | relevance | path

Searched refs:IterateQueue (Results 1 – 15 of 15) sorted by relevance

/xnu-8019.80.24/tools/lldbmacros/
H A Dbank.py84 …for bank_account in IterateQueue(bank_task.bt_accounts_to_pay, 'bank_account_t', 'ba_next_acc_to_p…
106 …for bank_account in IterateQueue(bank_task.bt_accounts_to_charge, 'bank_account_t', 'ba_next_acc_t…
125 for bank_task in IterateQueue(kern.globals.bank_tasks_list, 'bank_task_t', 'bt_global_elt'):
142 …for bank_account in IterateQueue(kern.globals.bank_accounts_list, 'bank_account_t', 'ba_global_elt…
H A Dturnstile.py112 …for turnstile in IterateQueue(turnstile_bucket.ts_ht_bucket_list, 'struct turnstile *', 'ts_htable…
128 …for turnstile in IterateQueue(kern.globals.turnstiles_list, 'struct turnstile *', 'ts_global_elm'):
144 …for turnstile in IterateQueue(kern.globals.turnstiles_list, 'struct turnstile *', 'ts_global_elm'):
H A Dprocess.py473 for thread in IterateQueue(task.threads, "thread_t", "task_threads"):
723 for thread in IterateQueue(task.threads, 'thread *', 'task_threads'):
987 …for th in IterateQueue(addressof(kern.globals.crashed_threads_queue), 'struct thread *', 'q_link'…
1007 for callentry in IterateQueue(callhead, 'struct call_entry *', 'q_link'):
1131 for th in IterateQueue(task.threads, 'thread *', 'task_threads'):
1183 for thread in IterateQueue(task.threads, 'thread *', 'task_threads'):
1290 for thval in IterateQueue(task.threads, 'thread *', 'task_threads'):
1559 for actp in IterateQueue(taskp.threads, 'struct thread *', 'task_threads'):
1791 for thval in IterateQueue(task_val.threads, 'thread *', 'task_threads'):
2042 for thread in IterateQueue(waitq.wq_queue, "thread_t", "links"):
[all …]
H A Dmemory.py1692 for th in IterateQueue(t.threads, 'thread *', 'task_threads'):
1871 for vme in IterateQueue(vme_list_head, vme_ptr_type, "links"):
1901 for vme in IterateQueue(vme_list_head, vme_ptr_type, "links"):
2917 for mtxgrp_ptr in IterateQueue(mtxgrp_queue_head, mtxgrp_ptr_type, "lck_grp_link"):
3209 for th in IterateQueue(t.threads, 'thread *', 'task_threads'):
3231 for th in IterateQueue(t.threads, 'thread *', 'task_threads'):
3250 for rwlgrp_ptr in IterateQueue(rwlgrp_queue_head, rwlgrp_ptr_type, "lck_grp_link"):
3344 for object in IterateQueue(queue_head, 'struct vm_object *', 'objq'):
3446 for object in IterateQueue(qhead, 'struct vm_object *', 'objq'):
3706 for vme in IterateQueue(vme_list_head, vme_ptr_type, "links", reverse_order):
[all …]
H A Dipcimportancedetail.py99 for i in IterateQueue(iie.iie_inherits, 'struct ipc_importance_inherit *', 'iii_inheritance'):
H A Dipc.py1284 for thval in IterateQueue(t.threads, 'thread *', 'task_threads'):
1636 for iit in IterateQueue(iit_queue, 'struct ipc_importance_task *', 'iit_allocation'):
1673 …inherit_count = sum(1 for i in IterateQueue(iit.iit_inherits, 'struct ipc_importance_inherit *', …
1677 … kmsg_count = sum(1 for i in IterateQueue(iie.iie_kmsgs, 'struct ipc_kmsg *', 'ikm_inheritance'))
1682 for k in IterateQueue(iie.iie_kmsgs, 'struct ipc_kmsg *', 'ikm_inheritance'):
1687 … for i in IterateQueue(iit.iit_inherits, 'struct ipc_importance_inherit *', 'iii_inheritance'):
2052 for v in IterateQueue(iv_hash_table[i], 'ipc_voucher_t', 'iv_hash_link'):
H A Dscheduler.py562 threads = [t for t in IterateQueue(kern.globals.threads, 'thread *', 'threads')]
569 for thread in IterateQueue(kern.globals.threads, 'thread *', 'threads'):
781 … for group in IterateQueue(kern.globals.sched_groups, "sched_group_t", "sched_groups"):
1231 for thread in IterateQueue(kern.globals.kernel_task.threads, 'thread *', 'task_threads'):
H A Dmisc.py275 for thread in IterateQueue(task.threads, 'thread_t', 'task_threads'):
1049 for elem in IterateQueue(qhead, elem_type, field_name):
H A Dioreg.py541 for next in IterateQueue(wq.fWorkQueue, 'IOServicePM *', 'WorkChain'):
546 for request in IterateQueue(next.RequestHead, 'IOPMRequest *', 'fCommandChain'):
H A Dpmap.py1456 for pmap in IterateQueue(kern.globals.map_pmap_list, 'pmap_t', 'pmaps'):
1644 for pmap in IterateQueue(kern.globals.map_pmap_list, 'pmap_t', 'pmaps'):
H A Duserspace.py336 for thval in IterateQueue(task.threads, 'thread *', 'task_threads'):
H A Dxnu.py951 for i in IterateQueue(queue_head, el_type, field_name):
/xnu-8019.80.24/tools/lldbmacros/core/
H A Dkernelcore.py139 def IterateQueue(queue_head, element_ptr_type, element_field_name, backwards=False, unpack_ptr_fn=N… function
572 for th in IterateQueue(thread_queue_head, thread_ptr_type, 'threads'):
583 for tsk in IterateQueue(task_queue_head, task_ptr_type, 'tasks'):
616 for tsk in IterateQueue(task_queue_head, task_ptr_type, 'tasks'):
627 for trd in IterateQueue(thread_queue_head, thread_ptr_type, 'threads'):
649 … for interrupt_stats_obj in IterateQueue(interrupt_stats_head, interrupt_stats_ptr_type, 'chain'):
H A Doperating_system.py607 def IterateQueue(queue_head, element_ptr_type, element_field_name): function
807 for th in IterateQueue(thread_q_head, thread_ptr_type, 'threads'):
/xnu-8019.80.24/tools/lldbmacros/usertaskdebugging/
H A Duserprocess.py139 for thval in IterateQueue(task.threads, 'thread *', 'task_threads'):