Home
last modified time | relevance | path

Searched refs:txBytes (Results 1 – 11 of 11) sorted by relevance

/system/netd/libbpf/
DBpfNetworkStatsTest.cpp139 EXPECT_EQ(target.txBytes, result.txBytes); in expectStatsEqual()
151 EXPECT_EQ(target.txBytes, (uint64_t)result.txBytes); in expectStatsLineEqual()
218 .txBytes = TEST_BYTES1, in TEST_F()
223 .txBytes = TEST_BYTES1 * 2, in TEST_F()
259 .txBytes = TEST_BYTES1, in TEST_F()
265 .txBytes = TEST_BYTES0, in TEST_F()
289 .txBytes = TEST_BYTES1 * 2 + TEST_BYTES0, in TEST_F()
302 .txBytes = TEST_BYTES1, in TEST_F()
337 .txBytes = TEST_BYTES1, in TEST_F()
371 .txBytes = TEST_BYTES1 * 20, in TEST_F()
[all …]
DBpfNetworkStats.cpp51 stats->txBytes = statsEntry.value().txBytes; in bpfGetUidStatsInternal()
88 stats->txBytes += statsEntry.txBytes; in bpfGetIfaceStatsInternal()
123 newLine.txBytes = statsEntry.txBytes; in populateStatsEntry()
DBpfUtils.cpp64 return ((lhs.rxBytes == rhs.rxBytes) && (lhs.txBytes == rhs.txBytes) && in operator ==()
/system/netd/server/
DTetherController.h89 txBytes(txB), txPackets(txP) {}; in TetherStats()
94 int64_t txBytes = -1; variable
101 txBytes += other.txBytes; in addStatsIfMatch()
DTetherController.cpp782 stats.txBytes = bytes; in addForwardChainStats()
788 if (stats.rxBytes != -1 && stats.txBytes != -1) { in addForwardChainStats()
789 ALOGV("rx_bytes=%" PRId64" tx_bytes=%" PRId64, stats.rxBytes, stats.txBytes); in addForwardChainStats()
796 if (((stats.rxBytes == -1) != (stats.txBytes == -1))) { in addForwardChainStats()
DTetherControllerTest.cpp321 EXPECT_EQ(expected.txBytes, actual.txBytes); in expectTetherStatsEqual()
DTrafficController.cpp672 value.rxPackets, value.txBytes, value.txPackets); in dump()
693 value.rxPackets, value.txBytes, value.txPackets); in dump()
732 value.rxBytes, value.rxPackets, value.txBytes, value.txPackets); in dump()
DNetdNativeService.cpp360 statsVector[INetd::TETHER_STATS_TX_BYTES] += stats.txBytes; in tetherAddStats()
/system/netd/libbpf/include/bpf/
DBpfNetworkStats.h44 int64_t txBytes; member
90 *unknownIfaceBytesTotal += (statsEntry.value().rxBytes + statsEntry.value().txBytes); in maybeLogUnknownIface()
DBpfUtils.h55 uint64_t txBytes; member
61 uint64_t txBytes; member
/system/netd/bpfloader/
Dbpf_kern.h58 uint64_t txBytes; member
93 __sync_fetch_and_add(&value->txBytes, skb->len); in bpf_update_stats()