Lines Matching refs:count
210 #define IAVF_SET_IPACKETS(vsi, count) (vsi)->ipackets = (count) argument
211 #define IAVF_SET_IERRORS(vsi, count) (vsi)->ierrors = (count) argument
212 #define IAVF_SET_OPACKETS(vsi, count) (vsi)->opackets = (count) argument
213 #define IAVF_SET_OERRORS(vsi, count) (vsi)->oerrors = (count) argument
214 #define IAVF_SET_COLLISIONS(vsi, count) /* Do nothing; collisions is always 0. */ argument
215 #define IAVF_SET_IBYTES(vsi, count) (vsi)->ibytes = (count) argument
216 #define IAVF_SET_OBYTES(vsi, count) (vsi)->obytes = (count) argument
217 #define IAVF_SET_IMCASTS(vsi, count) (vsi)->imcasts = (count) argument
218 #define IAVF_SET_OMCASTS(vsi, count) (vsi)->omcasts = (count) argument
219 #define IAVF_SET_IQDROPS(vsi, count) (vsi)->iqdrops = (count) argument
220 #define IAVF_SET_OQDROPS(vsi, count) (vsi)->oqdrops = (count) argument
221 #define IAVF_SET_NOPROTO(vsi, count) (vsi)->noproto = (count) argument
223 #define IAVF_SET_IPACKETS(vsi, count) (vsi)->ifp->if_ipackets = (count) argument
224 #define IAVF_SET_IERRORS(vsi, count) (vsi)->ifp->if_ierrors = (count) argument
225 #define IAVF_SET_OPACKETS(vsi, count) (vsi)->ifp->if_opackets = (count) argument
226 #define IAVF_SET_OERRORS(vsi, count) (vsi)->ifp->if_oerrors = (count) argument
227 #define IAVF_SET_COLLISIONS(vsi, count) (vsi)->ifp->if_collisions = (count) argument
228 #define IAVF_SET_IBYTES(vsi, count) (vsi)->ifp->if_ibytes = (count) argument
229 #define IAVF_SET_OBYTES(vsi, count) (vsi)->ifp->if_obytes = (count) argument
230 #define IAVF_SET_IMCASTS(vsi, count) (vsi)->ifp->if_imcasts = (count) argument
231 #define IAVF_SET_OMCASTS(vsi, count) (vsi)->ifp->if_omcasts = (count) argument
232 #define IAVF_SET_IQDROPS(vsi, count) (vsi)->ifp->if_iqdrops = (count) argument
234 #define IAVF_SET_NOPROTO(vsi, count) (vsi)->noproto = (count) argument