Home
last modified time | relevance | path

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

/xnu-12377.81.4/bsd/net/
H A Dif.c632 (ifc->ifc_units[bytoff] == 0xff)) { in if_clone_create()
639 while ((ifc->ifc_units[bytoff] & (1 << bitoff)) != 0) { in if_clone_create()
668 KASSERT((ifc->ifc_units[bytoff] & (1 << bitoff)) == 0, in if_clone_create()
670 ifc->ifc_units[bytoff] |= (unsigned char)(1 << bitoff); in if_clone_create()
744 KASSERT((ifc->ifc_units[bytoff] & (1 << bitoff)) != 0, in if_clone_destroy()
746 ifc->ifc_units[bytoff] &= ~(1 << bitoff); in if_clone_destroy()
808 unsigned char *ifc_units = NULL; in if_clone_attach() local
823 ifc_units = (unsigned char *)kalloc_data(len, Z_WAITOK | Z_ZERO); in if_clone_attach()
824 if (ifc_units == NULL) { in if_clone_attach()
827 ifc->ifc_units = ifc_units; in if_clone_attach()
[all …]
H A Dif_var_private.h1131 unsigned char *__counted_by(ifc_bmlen) ifc_units; /* bitmap to handle units */