Home
last modified time | relevance | path

Searched refs:ifc_units (Results 1 – 2 of 2) sorted by relevance

/xnu-11417.121.6/bsd/net/
H A Dif.c625 (ifc->ifc_units[bytoff] == 0xff)) { in if_clone_create()
632 while ((ifc->ifc_units[bytoff] & (1 << bitoff)) != 0) { in if_clone_create()
661 KASSERT((ifc->ifc_units[bytoff] & (1 << bitoff)) == 0, in if_clone_create()
663 ifc->ifc_units[bytoff] |= (unsigned char)(1 << bitoff); in if_clone_create()
737 KASSERT((ifc->ifc_units[bytoff] & (1 << bitoff)) != 0, in if_clone_destroy()
739 ifc->ifc_units[bytoff] &= ~(1 << bitoff); in if_clone_destroy()
801 unsigned char *ifc_units = NULL; in if_clone_attach() local
816 ifc_units = (unsigned char *)kalloc_data(len, Z_WAITOK | Z_ZERO); in if_clone_attach()
817 if (ifc_units == NULL) { in if_clone_attach()
820 ifc->ifc_units = ifc_units; in if_clone_attach()
[all …]
H A Dif_var_private.h1122 unsigned char *__counted_by(ifc_bmlen) ifc_units; /* bitmap to handle units */