Home
last modified time | relevance | path

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

/xnu-11215/bsd/net/
H A Dkpi_interface.c3023 ifnet_clone_attach(struct ifnet_clone_params *cloner_params, in ifnet_clone_attach() argument
3030 if (cloner_params == NULL || ifcloner == NULL || in ifnet_clone_attach()
3031 cloner_params->ifc_name == NULL || in ifnet_clone_attach()
3032 cloner_params->ifc_create == NULL || in ifnet_clone_attach()
3033 cloner_params->ifc_destroy == NULL || in ifnet_clone_attach()
3034 (namelen = strlen(cloner_params->ifc_name)) >= IFNAMSIZ) { in ifnet_clone_attach()
3039 if (if_clone_lookup(__terminated_by_to_indexable(cloner_params->ifc_name), in ifnet_clone_attach()
3042 cloner_params->ifc_name); in ifnet_clone_attach()
3048 strlcpy(ifc->ifc_name, cloner_params->ifc_name, IFNAMSIZ + 1); in ifnet_clone_attach()
3051 ifc->ifc_create = cloner_params->ifc_create; in ifnet_clone_attach()
[all …]
H A Dkpi_interface.h3358 extern errno_t ifnet_clone_attach(struct ifnet_clone_params *cloner_params, if_clone_t *ifcloner);