Lines Matching full:counters
34 * Implemented Tally Counters, increased VM load/save version
413 /* Tally counters */
429 /* Clears all tally counters */
430 static void RTL8139TallyCounters_clear(RTL8139TallyCounters* counters);
498 /* Tally counters */
516 /* Writes tally counters to memory via DMA */
1277 /* reset tally counters */ in rtl8139_reset()
1281 static void RTL8139TallyCounters_clear(RTL8139TallyCounters* counters) in RTL8139TallyCounters_clear() argument
1283 counters->TxOk = 0; in RTL8139TallyCounters_clear()
1284 counters->RxOk = 0; in RTL8139TallyCounters_clear()
1285 counters->TxERR = 0; in RTL8139TallyCounters_clear()
1286 counters->RxERR = 0; in RTL8139TallyCounters_clear()
1287 counters->MissPkt = 0; in RTL8139TallyCounters_clear()
1288 counters->FAE = 0; in RTL8139TallyCounters_clear()
1289 counters->Tx1Col = 0; in RTL8139TallyCounters_clear()
1290 counters->TxMCol = 0; in RTL8139TallyCounters_clear()
1291 counters->RxOkPhy = 0; in RTL8139TallyCounters_clear()
1292 counters->RxOkBrd = 0; in RTL8139TallyCounters_clear()
1293 counters->RxOkMul = 0; in RTL8139TallyCounters_clear()
1294 counters->TxAbt = 0; in RTL8139TallyCounters_clear()
1295 counters->TxUndrn = 0; in RTL8139TallyCounters_clear()
2404 /* handle Dump Tally Counters command */ in rtl8139_TxStatus_write()
2411 /* dump tally counters to specified memory location */ in rtl8139_TxStatus_write()