Searched refs:queue_head (Results 1 – 6 of 6) sorted by relevance
| /xnu-11215/tools/lldbmacros/ |
| H A D | scheduler.py | 844 queue_head = addressof(queue_head) 866 link = queue_head.next 867 last_link = queue_head 877 …ueue_head {:>#18x} next: {:>#18x} prev: {:>#18x}".format(queue_head, queue_head.next, queue_head.p… 878 …if unsigned(queue_head.next) == unsigned(queue_head) and unsigned(queue_head.prev) != unsigned(que… 879 …ueue_head {:>#18x} next: {:>#18x} prev: {:>#18x}".format(queue_head, queue_head.next, queue_head.p… 882 …ueue_head {:>#18x} next: {:>#18x} prev: {:>#18x}".format(queue_head, queue_head.next, queue_head.p… 922 queue_head = addressof(queue_head) 926 …queue_head = value(queue_head.GetSBValue().CreateValueFromExpression(None,'(void *)'+str(unsigned(… 927 queue_head = cast(queue_head, 'struct queue_entry *') [all …]
|
| H A D | xnu.py | 1265 queue_head = kern.GetValueFromAddress(cmd_args[0], 'struct queue_entry *') 1274 for i in IterateQueue(queue_head, el_type, field_name): 1303 queue_head = kern.GetValueFromAddress(cmd_args[0], el_type) 1314 elt = queue_head
|
| H A D | memory.py | 2866 queue_head = kern.globals.purgeable_nonvolatile_queue 2873 for object in IterateQueue(queue_head, 'struct vm_object *', 'objq'): 3638 queue_head = kern.globals.vm_objects_wired 3639 for object in IterateQueue(queue_head, 'struct vm_object *', 'wired_objq'):
|
| /xnu-11215/tools/lldbmacros/core/ |
| H A D | kernelcore.py | 95 def IterateLinkageChain(queue_head, element_type, field_name): argument 115 head = queue_head.GetSBValue() 124 def IterateCircleQueue(queue_head, element_type, field_name): argument 138 head = queue_head.GetSBValue() 147 def IterateQueue(queue_head, element_ptr_type, element_field_name, backwards=False, unpack_ptr_fn=N… argument 167 head = queue_head.GetSBValue()
|
| H A D | operating_system.py | 609 def IterateQueue(queue_head: lldb.SBValue, element_ptr_type: lldb.SBType, element_field_name: str): 620 if queue_head.TypeIsPointerType(): 621 queue_head_addr = queue_head.GetValueAsUnsigned() 623 queue_head_addr = queue_head.GetAddress().GetLoadAddress(osplugin_target_obj) 624 cur_elt: lldb.SBValue = queue_head.GetChildMemberWithName('next')
|
| /xnu-11215/osfmk/kern/ |
| H A D | zalloc.c | 928 zone_pva_t *queue_head = &zone_pageq_base()[queue.packed_address]; in zone_queue_set_head() local 930 if (!zone_pva_is_equal(*queue_head, oldv)) { in zone_queue_set_head() 933 *queue_head = meta->zm_page_next; in zone_queue_set_head()
|