| /xnu-8019.80.24/bsd/sys/ |
| H A D | queue.h | 272 (var) = SLIST_NEXT((var), field)) 276 (var) && ((tvar) = SLIST_NEXT((var), field), 1); \ 282 (varp) = &SLIST_NEXT((var), field)) 289 SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \ 290 SLIST_NEXT((slistelm), field) = (elm); \ 294 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \ 298 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next) macro 309 while (SLIST_NEXT(curelm, field) != (elm)) \ 310 curelm = SLIST_NEXT(curelm, field); \ 319 SLIST_NEXT(elm, field) = \ [all …]
|
| /xnu-8019.80.24/bsd/kern/ |
| H A D | uipc_mbuf2.c | 365 p = SLIST_NEXT(p, m_tag_link); in m_tag_create() 387 p = SLIST_NEXT(p, m_tag_link); in m_tag_create() 534 while ((q = SLIST_NEXT(p, m_tag_link)) != NULL) { in m_tag_delete_chain() 553 p = SLIST_NEXT(t, m_tag_link); in m_tag_locate() 560 p = SLIST_NEXT(p, m_tag_link); in m_tag_locate() 646 return SLIST_NEXT(t, m_tag_link); in m_tag_next()
|
| H A D | kern_newsysctl.c | 236 SLIST_NEXT(oidp, oid_link) = *prevp; in sysctl_register_oid_locked() 594 it.a = SLIST_NEXT(a, oid_link); in sysctl_oid_iterator_begin() 613 it->b = SLIST_NEXT(b, oid_link); in sysctl_oid_iterator_next_num_order() 618 it->a = SLIST_NEXT(a, oid_link); in sysctl_oid_iterator_next_num_order() 622 it->b = SLIST_NEXT(b, oid_link); in sysctl_oid_iterator_next_num_order() 637 it->a = SLIST_NEXT(a, oid_link); in sysctl_oid_iterator_next_system_order() 642 it->b = SLIST_NEXT(b, oid_link); in sysctl_oid_iterator_next_system_order()
|
| H A D | posix_shm.c | 628 SLIST_NEXT(pshmobj, pshmo_next) = NULL; in pshm_truncate() 879 map_pos += pshmobj->pshmo_size, pshmobj = SLIST_NEXT(pshmobj, pshmo_next)) { in pshm_mmap()
|
| H A D | kern_proc.c | 2635 SLIST_FIRST(&pl->pl_head) = SLIST_NEXT(pe, pe_link); in pidlist_free() 2653 if (NULL == (pe = SLIST_NEXT(pe, pe_link))) { in pidlist_add_pid()
|
| H A D | kern_event.c | 2914 kn = SLIST_NEXT(kn, kn_link); in kqueue_dealloc() 2936 kn = SLIST_NEXT(kn, kn_link); in kqueue_dealloc() 8587 for (; kn; kn = SLIST_NEXT(kn, kn_link)) { in kevent_extinfo_emit()
|
| /xnu-8019.80.24/bsd/skywalk/mem/ |
| H A D | skmem_cache.c | 1475 if (SLIST_NEXT(bc, bc_link) == NULL) { in skmem_slab_free_locked() 1765 nmg = SLIST_NEXT(mg, mg_link); in skmem_depot_batch_free() 1823 nmg = SLIST_NEXT(mg, mg_link); in skmem_depot_ws_reap() 1824 SLIST_NEXT(mg, mg_link) = NULL; in skmem_depot_ws_reap() 1836 nmg = SLIST_NEXT(mg, mg_link); in skmem_depot_ws_reap() 1837 SLIST_NEXT(mg, mg_link) = NULL; in skmem_depot_ws_reap() 1920 if (__probable(SLIST_NEXT(mg, mg_link) != NULL)) { in skmem_cpu_batch_reload() 1921 cp->cp_ploaded = SLIST_NEXT(mg, mg_link); in skmem_cpu_batch_reload() 1923 SLIST_NEXT(mg, mg_link) = NULL; in skmem_cpu_batch_reload() 1925 ASSERT(SLIST_NEXT(mg, mg_link) == NULL); in skmem_cpu_batch_reload() [all …]
|
| /xnu-8019.80.24/bsd/net/ |
| H A D | pf_table.c | 941 q = SLIST_NEXT(p, pfrke_workq); in pfr_destroy_kentries() 1836 q = SLIST_NEXT(p, pfrkt_workq); in pfr_ina_commit() 1878 next = SLIST_NEXT(p, pfrke_workq); /* XXX */ in pfr_commit_ktable() 2044 q = SLIST_NEXT(p, pfrkt_workq); in pfr_setflags_ktables() 2161 q = SLIST_NEXT(p, pfrkt_workq); in pfr_destroy_ktables()
|
| H A D | content_filter.c | 4298 for (iter_entry = SLIST_NEXT(entry, cfe_order_link); in cfil_service_pending_queue() 4300 iter_entry = SLIST_NEXT(iter_entry, cfe_order_link)) { in cfil_service_pending_queue() 4333 for (iter_entry = SLIST_NEXT(entry, cfe_order_link); in cfil_service_pending_queue() 4335 iter_entry = SLIST_NEXT(iter_entry, cfe_order_link)) { in cfil_service_pending_queue()
|
| H A D | dlil.c | 1626 proto = SLIST_NEXT(proto, next_hash); in find_attached_proto() 7997 while (prev_proto != NULL && SLIST_NEXT(prev_proto, next_hash) != NULL) { in dlil_attach_protocol() 7998 prev_proto = SLIST_NEXT(prev_proto, next_hash); in dlil_attach_protocol()
|
| /xnu-8019.80.24/osfmk/ipc/ |
| H A D | ipc_pset.c | 653 *knprev = SLIST_NEXT(kn, kn_selnext); in filt_machport_unlink()
|
| /xnu-8019.80.24/osfmk/kern/ |
| H A D | turnstile.c | 676 *prev_tslink = SLIST_NEXT(ret_turnstile, ts_htable_link); in turnstable_htable_lookup_remove()
|
| /xnu-8019.80.24/bsd/netinet/ |
| H A D | tcp_subr.c | 3809 SLIST_NEXT(rxseg, rx_link) == NULL && in tcp_rxtseg_dsack_for_tlp()
|