Home
last modified time | relevance | path

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

/dragonfly/sys/netgraph7/bluetooth/drivers/ubt/
H A Dng_ubt_var.h82 ng_ubt_node_stat_ep sc_stat; /* statistic */ member
83 #define UBT_STAT_PCKTS_SENT(sc) (sc)->sc_stat.pckts_sent ++
84 #define UBT_STAT_BYTES_SENT(sc, n) (sc)->sc_stat.bytes_sent += (n)
85 #define UBT_STAT_PCKTS_RECV(sc) (sc)->sc_stat.pckts_recv ++
86 #define UBT_STAT_BYTES_RECV(sc, n) (sc)->sc_stat.bytes_recv += (n)
87 #define UBT_STAT_OERROR(sc) (sc)->sc_stat.oerrors ++
88 #define UBT_STAT_IERROR(sc) (sc)->sc_stat.ierrors ++
89 #define UBT_STAT_RESET(sc) bzero(&(sc)->sc_stat, sizeof((sc)->sc_stat))
H A Dng_ubt.c1702 bcopy(&sc->sc_stat, rsp->data, in ng_ubt_rcvmsg()
/dragonfly/sys/dev/crypto/tpm/
H A Dtpm.c568 sc->sc_stat = tpm_status(sc); in tpm_waitfor_int()
588 sc->sc_stat = tpm_status(sc); in tpm_waitfor_int()
606 sc->sc_stat = tpm_status(sc); in tpm_waitfor_int()
609 TPM_STS_BITS, sc->sc_stat); in tpm_waitfor_int()
704 if ((sc->sc_stat & b) != b) { in tpm_waitfor()
736 sc->sc_stat = tpm_status(sc); in tpm_tis12_start()
740 TPM_STS_BITS, sc->sc_stat); in tpm_tis12_start()
832 sc->sc_stat = tpm_status(sc); in tpm_tis12_write()
854 TPM_STS_BITS, sc->sc_stat); in tpm_tis12_write()
878 sc->sc_stat = tpm_status(sc); in tpm_tis12_end()
[all …]
H A Dtpmvar.h38 u_int32_t sc_stat; member