Home
last modified time | relevance | path

Searched refs:qhead (Results 1 – 12 of 12) sorted by relevance

/xnu-12377.1.9/bsd/net/classq/
H A Dclassq.h187 #define qhead(q) ((qptype(q) == QP_MBUF) ? \ macro
191 #define qhead(q) MBUFQ_FIRST(&qmbufq(q)) macro
/xnu-12377.1.9/tools/lldbmacros/
H A Dmisc.py586 qhead = kern.GetValueFromAddress(cmd_args[0], 'struct queue_entry *')
587 if not qhead:
621 for elem in IterateLinkageChain(qhead, elem_type, field_name):
625 for elem in IterateQueue(qhead, elem_type, field_name):
629 print("Exception while looking at queue_head: {:#x}".format(unsigned(qhead)))
H A Dmemory.py3006 def ShowPurgeableQueue(qhead, volatile_total): argument
3008 ShowPurgeableGroup(qhead.objq[0], volatile_total)
3010 ShowPurgeableGroup(qhead.objq[1], volatile_total)
3012 ShowPurgeableGroup(qhead.objq[2], volatile_total)
3014 ShowPurgeableGroup(qhead.objq[3], volatile_total)
3016 ShowPurgeableGroup(qhead.objq[4], volatile_total)
3018 ShowPurgeableGroup(qhead.objq[5], volatile_total)
3020 ShowPurgeableGroup(qhead.objq[6], volatile_total)
3022 ShowPurgeableGroup(qhead.objq[7], volatile_total)
3024 def ShowPurgeableGroup(qhead, volatile_total): argument
[all …]
/xnu-12377.1.9/bsd/skywalk/nexus/
H A Dnexus_pktq.c81 return qempty(&q->nx_pktq_q) && qhead(&q->nx_pktq_q) == NULL; in nx_pktq_empty()
H A Dnexus_mbq.c108 return qempty(&q->nx_mbq_q) && qhead(&q->nx_mbq_q) == NULL; in nx_mbq_empty()
H A Dnexus_mbq.h109 return qhead(&q->nx_mbq_q); in nx_mbq_peek()
H A Dnexus_pktq.h82 return qhead(&q->nx_pktq_q); in nx_pktq_peek()
/xnu-12377.1.9/osfmk/kern/
H A Dsmr.c332 smr_node_t qhead; member
444 pcpu[cpu].qold_tail = &pcpu[cpu].qhead; in __smr_pcpu_associate()
445 pcpu[cpu].qage_tail = &pcpu[cpu].qhead; in __smr_pcpu_associate()
446 pcpu[cpu].qcur_tail = &pcpu[cpu].qhead; in __smr_pcpu_associate()
588 assert(pcpu->qhead == NULL); in smr_domain_free()
1720 head = pcpu->qhead; in __smr_worker_drain_one()
1721 pcpu->qhead = *pcpu->qold_tail; in __smr_worker_drain_one()
1743 pcpu->qold_tail = &pcpu->qhead; in __smr_worker_drain_one()
/xnu-12377.1.9/osfmk/vm/
H A Dvm_page.h560 vm_page_queue_head_t qhead; member
H A Dvm_resident.c707 vm_page_queue_init(&free_queue->vmpfq_queues[color].qhead); in vm_page_free_queue_init()
723 return &vm_page_queue_free.vmpfq_queues[color].qhead; in vm_page_free_queue_for_class()
800 vm_page_free_queue_foreach(&queue->vmpfq_queues[color].qhead, block);
6559 vm_page_verify_free_list(&vm_page_queue_free.vmpfq_queues[other_color].qhead, in vm_page_verify_free_list()
6608 npages += vm_page_verify_free_list(&vm_page_queue_free.vmpfq_queues[color].qhead, in vm_page_verify_free_lists()
/xnu-12377.1.9/bsd/net/
H A Ddlil_subr.c998 VERIFY(qhead(&inp->dlth_pkts) == NULL && qempty(&inp->dlth_pkts)); in dlil_clean_threading_info()
H A Ddlil.c5005 VERIFY(qhead(&dl_inp->dlth_pkts) == NULL && qempty(&dl_inp->dlth_pkts)); in ifnet_attach()