Searched refs:fce (Results 1 - 2 of 2) sorted by relevance

/darwin-on-arm/xnu/bsd/net/classq/
H A Dclassq_sfb.c796 struct sfb_bin_fcentry *fce; local
816 SLIST_FOREACH(fce, fcl, fce_link) {
817 if (fce->fce_flowhash == flowhash) {
824 fce = ifnet_fce_alloc(M_WAITOK);
825 if (fce != NULL) {
826 fce->fce_flowhash = flowhash;
827 SLIST_INSERT_HEAD(fcl, fce, fce_link);
831 return (fce != NULL);
/darwin-on-arm/xnu/bsd/net/
H A Ddlil.c5732 struct sfb_bin_fcentry *fce, *tfce; local
5736 SLIST_FOREACH_SAFE(fce, fcl, fce_link, tfce) {
5737 SLIST_REMOVE(fcl, fce, sfb_bin_fcentry, fce_link);
5738 SLIST_INSERT_HEAD(&ifnet_fclist, fce, fce_link);
5751 struct sfb_bin_fcentry *fce; local
5753 fce = (how == M_WAITOK) ? zalloc(ifnet_fcezone) :
5755 if (fce != NULL)
5756 bzero(fce, ifnet_fcezone_size);
5758 return (fce);
5762 ifnet_fce_free(struct sfb_bin_fcentry *fce) argument
5799 struct sfb_bin_fcentry *fce; local
[all...]

Completed in 40 milliseconds