Home
last modified time | relevance | path

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

/xnu-12377.41.6/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.41.6/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.py3010 def ShowPurgeableQueue(qhead, volatile_total): argument
3012 ShowPurgeableGroup(qhead.objq[0], volatile_total)
3014 ShowPurgeableGroup(qhead.objq[1], volatile_total)
3016 ShowPurgeableGroup(qhead.objq[2], volatile_total)
3018 ShowPurgeableGroup(qhead.objq[3], volatile_total)
3020 ShowPurgeableGroup(qhead.objq[4], volatile_total)
3022 ShowPurgeableGroup(qhead.objq[5], volatile_total)
3024 ShowPurgeableGroup(qhead.objq[6], volatile_total)
3026 ShowPurgeableGroup(qhead.objq[7], volatile_total)
3028 def ShowPurgeableGroup(qhead, volatile_total): argument
[all …]
/xnu-12377.41.6/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.41.6/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.41.6/osfmk/vm/
H A Dvm_mteinfo.c903 return &mte_free_queues[idx].vmpfq_queues[color].qhead; in mteinfo_free_queue_head()
1076 queue = &mte_claimable_queue.vmpfq_queues[color].qhead; in cell_list_requeue()
2667 queue = &mte_claimable_queue.vmpfq_queues[*colorp].qhead; in mteinfo_tag_storage_claimable_refill()
2670 queue = &mte_claimable_queue.vmpfq_queues[*colorp].qhead; in mteinfo_tag_storage_claimable_refill()
H A Dvm_page.h676 vm_page_queue_head_t qhead; member
H A Dvm_resident.c738 vm_page_queue_init(&free_queue->vmpfq_queues[color].qhead); in vm_page_free_queue_init()
762 return &vm_page_queue_free.vmpfq_queues[color].qhead; in vm_page_free_queue_for_class()
849 vm_page_free_queue_foreach(&queue->vmpfq_queues[color].qhead, block);
7289 vm_page_verify_free_list(&vm_page_queue_free.vmpfq_queues[other_color].qhead, in vm_page_verify_free_list()
7338 npages += vm_page_verify_free_list(&vm_page_queue_free.vmpfq_queues[color].qhead, in vm_page_verify_free_lists()
/xnu-12377.41.6/tests/vm/
H A Dvm_mteinfo.c67 vm_page_queue_head_t qhead; member
/xnu-12377.41.6/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()