Home
last modified time | relevance | path

Searched refs:txErrors (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/
DTetherStatsValue.java39 public final long txErrors; field in TetherStatsValue
42 final long txPackets, final long txBytes, final long txErrors) { in TetherStatsValue() argument
48 this.txErrors = txErrors; in TetherStatsValue()
65 && txErrors == that.txErrors; in equals()
71 ^ Long.hashCode(txPackets) ^ Long.hashCode(txBytes) ^ Long.hashCode(txErrors); in hashCode()
78 txBytes, txErrors); in toString()
/packages/modules/Connectivity/Tethering/bpf_progs/
Doffload.c232 __sync_fetch_and_add(downstream ? &stat_v->rxErrors : &stat_v->txErrors, 1);
244 __sync_fetch_and_add(downstream ? &stat_v->rxErrors : &stat_v->txErrors, 1);
545 __sync_fetch_and_add(downstream ? &stat_v->rxErrors : &stat_v->txErrors, 1); in do_forward4()
559 __sync_fetch_and_add(downstream ? &stat_v->rxErrors : &stat_v->txErrors, 1); in do_forward4()
Dbpf_tethering.h88 uint64_t txErrors; member