| /xnu-11215/tools/lldbmacros/ |
| H A D | bank.py | 84 …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 D | kmtriage.py | 31 for thread_obj in IterateQueue(t.threads, 'thread *', 'task_threads'):
|
| H A D | process.py | 576 for thread in IterateQueue(task.threads, "thread_t", "task_threads"): 853 for thread in IterateQueue(task.threads, 'thread *', 'task_threads'): 1137 for callentry in IterateQueue(callhead, 'struct call_entry *', 'q_link'): 1281 for th in IterateQueue(task.threads, 'thread *', 'task_threads'): 1341 for thread in IterateQueue(task.threads, 'thread *', 'task_threads'): 1535 for th in IterateQueue(t.threads, 'thread *', 'task_threads'): 2097 for thval in IterateQueue(task_val.threads, 'thread *', 'task_threads'): 2370 for actp in IterateQueue(taskp.threads, 'thread *', 'task_threads'): 2386 for actp in IterateQueue(taskp.threads, 'thread *', 'task_threads'): 2433 for thval in IterateQueue(task.threads, 'thread *', 'task_threads'): [all …]
|
| H A D | turnstile.py | 139 …for turnstile in IterateQueue(turnstile_bucket.ts_ht_bucket_list, 'struct turnstile *', 'ts_htable…
|
| H A D | recount.py | 4 GetRecentTimestamp, GetProcNameForTask, FindTasksByName, IterateQueue) 399 threads = [unsigned(t) for t in IterateQueue( 556 for thread in IterateQueue(
|
| H A D | memory.py | 1244 for th in IterateQueue(t.threads, 'thread *', 'task_threads'): 1490 for vme in IterateQueue(vme_list_head, vme_ptr_type, "links"): 1520 for vme in IterateQueue(vme_list_head, vme_ptr_type, "links"): 2975 for object in IterateQueue(qhead, 'struct vm_object *', 'objq'): 3287 for upl in IterateQueue(uplq_head, 'upl_t', 'uplq'): 3495 for vme in IterateQueue(vme_list_head, vme_ptr_type, "links"): 3718 for vme in IterateQueue(vme_list_head, vme_ptr_type, 'links'): 4277 for pager in IterateQueue(qhead, qtype, "pager_queue"): 4317 for pager in IterateQueue(qhead, qtype, "srp_queue"): 4361 for pager in IterateQueue(qhead, qtype, "dyld_pager_queue"): [all …]
|
| H A D | ipcimportancedetail.py | 99 … for iii in IterateQueue(iit.iit_inherits, 'struct ipc_importance_inherit *', 'iii_inheritance'):
|
| H A D | misc.py | 324 for thread in IterateQueue(task.threads, 'thread_t', 'task_threads'): 608 for elem in IterateQueue(qhead, elem_type, field_name):
|
| H A D | ipc.py | 1354 for thval in IterateQueue(t.threads, 'thread *', 'task_threads'): 1769 for iit in IterateQueue(iit_queue, 'struct ipc_importance_task *', 'iit_allocation'): 1806 …inherit_count = sum(1 for i in IterateQueue(iit.iit_inherits, 'struct ipc_importance_inherit *', … 1810 … kmsg_count = sum(1 for i in IterateQueue(iie.iie_kmsgs, 'struct ipc_kmsg *', 'ikm_inheritance')) 1815 for k in IterateQueue(iie.iie_kmsgs, 'struct ipc_kmsg *', 'ikm_inheritance'): 1820 … for i in IterateQueue(iit.iit_inherits, 'struct ipc_importance_inherit *', 'iii_inheritance'):
|
| H A D | scheduler.py | 555 threads = [t for t in IterateQueue(kern.globals.threads, 'thread *', 'threads')] 562 for thread in IterateQueue(kern.globals.threads, 'thread *', 'threads'): 1179 for thread in IterateQueue(kern.globals.kernel_task.threads, 'thread *', 'task_threads'):
|
| H A D | pmap.py | 1266 for pmap in IterateQueue(kern.globals.map_pmap_list, 'pmap_t', 'pmaps'): 1447 for pmap in IterateQueue(kern.globals.map_pmap_list, 'pmap_t', 'pmaps'):
|
| H A D | ioreg.py | 577 for next in IterateQueue(wq.fWorkQueue, 'IOServicePM *', 'WorkChain'): 582 for request in IterateQueue(next.RequestHead, 'IOPMRequest *', 'fCommandChain'):
|
| H A D | userspace.py | 324 for thval in IterateQueue(task.threads, 'thread *', 'task_threads'):
|
| H A D | kasan.py | 332 in IterateQueue(kern.globals.kernel_map.hdr.links, vme_ptr_type, "links")
|
| H A D | xnu.py | 1274 for i in IterateQueue(queue_head, el_type, field_name):
|
| /xnu-11215/tools/lldbmacros/usertaskdebugging/ |
| H A D | userprocess.py | 137 for thval in IterateQueue(task.threads, 'thread *', 'task_threads'):
|
| /xnu-11215/tools/lldbmacros/core/ |
| H A D | kernelcore.py | 147 def IterateQueue(queue_head, element_ptr_type, element_field_name, backwards=False, unpack_ptr_fn=N… function
|
| H A D | operating_system.py | 609 def IterateQueue(queue_head: lldb.SBValue, element_ptr_type: lldb.SBType, element_field_name: str): function 836 for th in IterateQueue(thread_q_head, thread_ptr_type, 'threads'):
|