| /xnu-10063.141.1/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-10063.141.1/bsd/skywalk/mem/ |
| H A D | skmem_cache.c | 1548 if (SLIST_NEXT(bc, bc_link) == NULL) { in skmem_slab_free_locked() 1838 nmg = SLIST_NEXT(mg, mg_link); in skmem_depot_batch_free() 1896 nmg = SLIST_NEXT(mg, mg_link); in skmem_depot_ws_reap() 1897 SLIST_NEXT(mg, mg_link) = NULL; in skmem_depot_ws_reap() 1909 nmg = SLIST_NEXT(mg, mg_link); in skmem_depot_ws_reap() 1910 SLIST_NEXT(mg, mg_link) = NULL; in skmem_depot_ws_reap() 1993 if (__probable(SLIST_NEXT(mg, mg_link) != NULL)) { in skmem_cpu_batch_reload() 1994 cp->cp_ploaded = SLIST_NEXT(mg, mg_link); in skmem_cpu_batch_reload() 1996 SLIST_NEXT(mg, mg_link) = NULL; in skmem_cpu_batch_reload() 1998 ASSERT(SLIST_NEXT(mg, mg_link) == NULL); in skmem_cpu_batch_reload() [all …]
|
| /xnu-10063.141.1/bsd/kern/ |
| H A D | kern_newsysctl.c | 240 SLIST_NEXT(oidp, oid_link) = *prevp; in sysctl_register_oid_locked() 598 it.a = SLIST_NEXT(a, oid_link); in sysctl_oid_iterator_begin() 617 it->b = SLIST_NEXT(b, oid_link); in sysctl_oid_iterator_next_num_order() 622 it->a = SLIST_NEXT(a, oid_link); in sysctl_oid_iterator_next_num_order() 626 it->b = SLIST_NEXT(b, oid_link); in sysctl_oid_iterator_next_num_order() 641 it->a = SLIST_NEXT(a, oid_link); in sysctl_oid_iterator_next_system_order() 646 it->b = SLIST_NEXT(b, oid_link); in sysctl_oid_iterator_next_system_order()
|
| H A D | uipc_mbuf2.c | 540 p = SLIST_NEXT(p, m_tag_link); in m_tag_create_mbuf() 563 p = SLIST_NEXT(p, m_tag_link); in m_tag_create_mbuf() 922 while ((q = SLIST_NEXT(p, m_tag_link)) != NULL) { in m_tag_delete_chain() 943 p = SLIST_NEXT(p, m_tag_link); in m_tag_locate() 1028 return SLIST_NEXT(t, m_tag_link); in m_tag_next()
|
| H A D | posix_shm.c | 628 SLIST_NEXT(pshmobj, pshmo_next) = NULL; in pshm_truncate() 875 map_pos += pshmobj->pshmo_size, pshmobj = SLIST_NEXT(pshmobj, pshmo_next)) { in pshm_mmap()
|
| H A D | kern_proc.c | 2807 SLIST_FIRST(&pl->pl_head) = SLIST_NEXT(pe, pe_link); in pidlist_free() 2825 if (NULL == (pe = SLIST_NEXT(pe, pe_link))) { in pidlist_add_pid()
|
| H A D | kern_event.c | 2971 kn = SLIST_NEXT(kn, kn_link); in kqueue_dealloc() 2993 kn = SLIST_NEXT(kn, kn_link); in kqueue_dealloc() 8910 for (; kn; kn = SLIST_NEXT(kn, kn_link)) { in kevent_extinfo_emit()
|
| /xnu-10063.141.1/bsd/net/ |
| H A D | pf_table.c | 941 q = SLIST_NEXT(p, pfrke_workq); in pfr_destroy_kentries() 1845 q = SLIST_NEXT(p, pfrkt_workq); in pfr_ina_commit() 1891 next = SLIST_NEXT(p, pfrke_workq); /* XXX */ in pfr_commit_ktable() 2063 q = SLIST_NEXT(p, pfrkt_workq); in pfr_setflags_ktables() 2180 q = SLIST_NEXT(p, pfrkt_workq); in pfr_destroy_ktables()
|
| H A D | content_filter.c | 4537 for (iter_entry = SLIST_NEXT(entry, cfe_order_link); in cfil_service_pending_queue() 4539 iter_entry = SLIST_NEXT(iter_entry, cfe_order_link)) { in cfil_service_pending_queue() 4572 for (iter_entry = SLIST_NEXT(entry, cfe_order_link); in cfil_service_pending_queue() 4574 iter_entry = SLIST_NEXT(iter_entry, cfe_order_link)) { in cfil_service_pending_queue()
|
| H A D | dlil.c | 1917 proto = SLIST_NEXT(proto, next_hash); in find_attached_proto() 8608 while (prev_proto != NULL && SLIST_NEXT(prev_proto, next_hash) != NULL) { in dlil_attach_protocol() 8609 prev_proto = SLIST_NEXT(prev_proto, next_hash); in dlil_attach_protocol()
|
| /xnu-10063.141.1/security/ |
| H A D | mac_base.c | 546 *mllp = SLIST_NEXT(mll, mll_list); in mac_policy_removefrom_labellist() 549 *mlep = SLIST_NEXT(mle, mle_list); in mac_policy_removefrom_labellist()
|
| /xnu-10063.141.1/osfmk/ipc/ |
| H A D | ipc_pset.c | 571 *knprev = SLIST_NEXT(kn, kn_selnext); in filt_machport_unlink()
|
| /xnu-10063.141.1/bsd/skywalk/nexus/ |
| H A D | nexus_traffic_rule.c | 605 next = SLIST_NEXT(ntr, ntr_storage_link); in nxctl_traffic_rule_clean()
|
| /xnu-10063.141.1/osfmk/kern/ |
| H A D | turnstile.c | 670 *prev_tslink = SLIST_NEXT(ret_turnstile, ts_htable_link); in turnstable_htable_lookup_remove()
|