Searched refs:sl_head (Results 1 – 4 of 4) sorted by relevance
| /xnu-10002.81.5/bsd/kern/ |
| H A D | uipc_mbuf.c | 598 void *sl_head; /* first free buffer */ member 2589 buf = sp->sl_head; in slab_alloc() 2591 sp->sl_head = buf->obj_next; in slab_alloc() 2595 VERIFY(sp->sl_head != NULL || sp->sl_refcnt == sp->sl_chunks); in slab_alloc() 2597 if (sp->sl_head != NULL && !slab_inrange(sp, sp->sl_head)) { in slab_alloc() 2598 slab_nextptr_panic(sp, sp->sl_head); in slab_alloc() 2600 VERIFY(slab_inrange(sp, sp->sl_head)); in slab_alloc() 2620 VERIFY(sp->sl_refcnt < NCLPG || sp->sl_head == NULL); in slab_alloc() 2629 (sp->sl_refcnt < NBCLPG || sp->sl_head == NULL)); in slab_alloc() 2636 sp->sl_len == m_maxsize(class) && sp->sl_head == NULL); in slab_alloc() [all …]
|
| /xnu-10002.81.5/bsd/skywalk/mem/ |
| H A D | skmem_cache.c | 973 SLIST_INSERT_HEAD(&sl->sl_head, bc, bc_link); in skmem_slab_create() 1022 SLIST_FOREACH_SAFE(bc, &sl->sl_head, bc_link, tbc) { in skmem_slab_destroy() 1023 SLIST_REMOVE(&sl->sl_head, bc, skmem_bufctl, bc_link); in skmem_slab_destroy() 1165 bc = SLIST_FIRST(&sl->sl_head); in skmem_slab_alloc_locked() 1167 SLIST_REMOVE(&sl->sl_head, bc, skmem_bufctl, bc_link); in skmem_slab_alloc_locked() 1228 if (SLIST_EMPTY(&sl->sl_head)) { in skmem_slab_alloc_locked() 1520 SLIST_INSERT_HEAD(&sl->sl_head, bc, bc_link); in skmem_slab_free_locked() 1547 ASSERT(bc == SLIST_FIRST(&sl->sl_head)); in skmem_slab_free_locked()
|
| H A D | skmem_cache_var.h | 91 SLIST_HEAD(, skmem_bufctl) sl_head; /* bufctl free list */
|
| /xnu-10002.81.5/tools/lldbmacros/ |
| H A D | skywalk.py | 199 for bc in IterateListEntry(slab.sl_head, 'bc_link', list_prefix='s') : 211 for bc in IterateListEntry(slab.sl_head, 'bc_link', list_prefix='s') :
|