| /xnu-12377.61.12/bsd/sys/ |
| H A D | queue.h | 679 for ((var) = TAILQ_LAST((head), headname); \ 684 for ((var) = TAILQ_LAST((head), headname); \ 753 #define TAILQ_LAST(head, headname) \ macro
|
| /xnu-12377.61.12/bsd/kern/ |
| H A D | imageboot.c | 480 if (VFS_ROOT(TAILQ_LAST(&mountlist, mntlist), &newdp, vfs_context_kernel())) { in imageboot_mount_image() 981 if (VFS_ROOT(TAILQ_LAST(&mountlist, mntlist), &newdp, vfs_context_kernel())) { in imageboot_mount_ramdisk()
|
| H A D | kern_credential.c | 538 while ((workp = TAILQ_LAST(&kauth_resolver_submitted, kauth_resolver_submitted_head)) != NULL) { in identitysvc() 1197 ip = TAILQ_LAST(&kauth_identities, kauth_identity_head); in kauth_identity_register_and_free() 1423 kip = TAILQ_LAST(&kauth_identities, kauth_identity_head); in kauth_identity_trimcache() 2924 gm = TAILQ_LAST(&kauth_groups, kauth_groups_head); in kauth_groups_updatecache() 2949 gm = TAILQ_LAST(&kauth_groups, kauth_groups_head); in kauth_groups_trimcache()
|
| H A D | kern_aio.c | 2899 return TAILQ_LAST(&wq_aio->wa_thidlelist, workq_aio_uthread_head); in workq_oldest_killable_idle_aio_thread() 3070 struct uthread *tail = TAILQ_LAST(&wq_aio->wa_thidlelist, workq_aio_uthread_head); in workq_push_idle_aio_thread()
|
| H A D | kern_control.c | 1712 kctl_next = TAILQ_LAST(&ctl_head, kctl_list); in ctl_register()
|
| H A D | uipc_mbuf_mcache.c | 1264 sp = (mcl_slab_t *)TAILQ_LAST(&m_slablist(class), mcl_slhead); in slab_alloc()
|
| /xnu-12377.61.12/bsd/net/ |
| H A D | pf_norm.c | 316 while ((frag = TAILQ_LAST(&pf_fragqueue, pf_fragqueue)) != NULL) { in pf_purge_expired_fragments() 340 while ((frag = TAILQ_LAST(&pf_cachequeue, pf_cachequeue)) != NULL) { in pf_purge_expired_fragments() 363 TAILQ_LAST(&pf_cachequeue, pf_cachequeue) != frag); in pf_purge_expired_fragments() 381 frag = TAILQ_LAST(&pf_fragqueue, pf_fragqueue); in pf_flush_fragments() 393 frag = TAILQ_LAST(&pf_cachequeue, pf_cachequeue); in pf_flush_fragments()
|
| H A D | pf_ioctl.c | 710 rule = TAILQ_LAST(ruleset->rules[rs_num].active.ptr, in pf_get_pool() 721 rule = TAILQ_LAST(ruleset->rules[rs_num].inactive.ptr, in pf_get_pool() 2901 tail = TAILQ_LAST(ruleset->rules[rs_num].inactive.ptr, in pfioctl_ioc_rule() 2973 tail = TAILQ_LAST(ruleset->rules[rs_num].active.ptr, in pfioctl_ioc_rule() 3198 oldrule = TAILQ_LAST( in pfioctl_ioc_rule() 3314 TAILQ_LAST(ruleset->rules[rs_num].active.ptr, in pfioctl_ioc_rule() 4031 oldpa = TAILQ_LAST(&pool->list, pf_palist); in pfioctl_ioc_pooladdr()
|
| H A D | if_utun.c | 1770 struct utun_pcb *next_pcb = TAILQ_LAST(&utun_head, utun_list); in utun_ctl_setup()
|
| H A D | if_ipsec.c | 2506 struct ipsec_pcb *next_pcb = TAILQ_LAST(&ipsec_head, ipsec_list); in ipsec_ctl_setup()
|
| H A D | if_bond.c | 1278 while ((p = TAILQ_LAST(&ifb->ifb_port_list, port_list)) != NULL) { in bond_remove_all_interfaces()
|
| /xnu-12377.61.12/bsd/netinet/ |
| H A D | tcp_sack.c | 559 cur = TAILQ_LAST(&tp->snd_holes, sackhole_head); /* Last SACK hole */ in tcp_sack_doack()
|
| H A D | ip_input.c | 1858 struct ipq *__single fq = TAILQ_LAST(head, ipqhead); in ip_reass() 1861 struct ipq *__single r = TAILQ_LAST(&ipq[i], ipqhead); in ip_reass()
|
| H A D | tcp_subr.c | 4466 found_seg = TAILQ_LAST(&tp->t_segs_sent, tcp_seg_sent_head); in tcp_segs_doack()
|
| /xnu-12377.61.12/iokit/Kernel/ |
| H A D | IOStatistics.cpp | 1178 entry = TAILQ_LAST(&parentKext->userClientCallList, ProcessEntryList); in storeUserClientCallInfo()
|
| /xnu-12377.61.12/bsd/vfs/ |
| H A D | vfs_subr.c | 672 mvp = TAILQ_LAST(&mp->mnt_vnodelist, vnodelst); in vnode_iterate_reloadq() 688 nlvp = TAILQ_LAST(&mp->mnt_newvnodes, vnodelst); in vnode_iterate_reloadq() 2051 if (TAILQ_LAST(&lmp->mnt_vnodelist, vnodelst) == vp) { in insmntque() 2053 } else if (TAILQ_LAST(&lmp->mnt_newvnodes, vnodelst) == vp) { in insmntque() 2055 } else if (TAILQ_LAST(&lmp->mnt_workerqueue, vnodelst) == vp) { in insmntque()
|
| /xnu-12377.61.12/bsd/pthread/ |
| H A D | pthread_workqueue.c | 853 struct uthread *uth = TAILQ_LAST(&wq->wq_thidlelist, workq_uthread_head); in workq_oldest_killable_idle_thread() 1336 struct uthread *tail = TAILQ_LAST(&wq->wq_thidlelist, workq_uthread_head); in workq_push_idle_thread()
|
| /xnu-12377.61.12/bsd/skywalk/mem/ |
| H A D | skmem_region.c | 1972 ASSERT(sg == TAILQ_LAST(&skr->skr_seg_free, segfreehead)); in sksegment_alloc_with_idx()
|
| /xnu-12377.61.12/osfmk/kern/ |
| H A D | zalloc.c | 10776 obj = TAILQ_LAST(&head, zone_stress_head); in zone_stress_worker()
|