Home
last modified time | relevance | path

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

/f-stack/freebsd/netgraph/bluetooth/drivers/ubt/
H A Dng_ubt_var.h113 ng_ubt_node_stat_ep sc_stat; /* statistic */ member
114 #define UBT_STAT_PCKTS_SENT(sc) (sc)->sc_stat.pckts_sent ++
115 #define UBT_STAT_BYTES_SENT(sc, n) (sc)->sc_stat.bytes_sent += (n)
116 #define UBT_STAT_PCKTS_RECV(sc) (sc)->sc_stat.pckts_recv ++
117 #define UBT_STAT_BYTES_RECV(sc, n) (sc)->sc_stat.bytes_recv += (n)
118 #define UBT_STAT_OERROR(sc) (sc)->sc_stat.oerrors ++
119 #define UBT_STAT_IERROR(sc) (sc)->sc_stat.ierrors ++
120 #define UBT_STAT_RESET(sc) bzero(&(sc)->sc_stat, sizeof((sc)->sc_stat))
H A Dng_ubt.c1828 bcopy(&sc->sc_stat, rsp->data, in ng_ubt_rcvmsg()