Home
last modified time | relevance | path

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

/system/netd/libnetdbpf/
DBpfNetworkStatsTest.cpp129 EXPECT_EQ(target.txBytes, result.txBytes); in expectStatsEqual()
141 EXPECT_EQ(target.txBytes, (uint64_t)result.txBytes); in expectStatsLineEqual()
206 .txBytes = 0, in TEST_F()
222 .txBytes = TEST_BYTES1, in TEST_F()
227 .txBytes = TEST_BYTES1 * 2, in TEST_F()
263 .txBytes = TEST_BYTES1, in TEST_F()
269 .txBytes = TEST_BYTES0, in TEST_F()
293 .txBytes = TEST_BYTES1 * 2 + TEST_BYTES0, in TEST_F()
306 .txBytes = TEST_BYTES1, in TEST_F()
341 .txBytes = TEST_BYTES1, in TEST_F()
[all …]
DBpfNetworkStats.cpp56 stats->txBytes = statsEntry.value().txBytes; in bpfGetUidStatsInternal()
93 stats->txBytes += statsEntry.txBytes; in bpfGetIfaceStatsInternal()
128 newLine.txBytes = statsEntry.txBytes; in populateStatsEntry()
331 txBytes = rhs.txBytes; in operator =()
339 txBytes += rhs.txBytes; in operator +=()
/system/netd/server/
DTetherController.h103 txBytes(txB), txPackets(txP) {}; in TetherStats()
108 int64_t txBytes = -1; variable
115 txBytes += other.txBytes; in addStatsIfMatch()
DTetherController.cpp867 stats.txBytes = bytes; in addForwardChainStats()
874 if (stats.rxBytes != -1 && stats.txBytes != -1) { in addForwardChainStats()
875 ALOGV("rx_bytes=%" PRId64" tx_bytes=%" PRId64, stats.rxBytes, stats.txBytes); in addForwardChainStats()
882 if (((stats.rxBytes == -1) != (stats.txBytes == -1))) { in addForwardChainStats()
DTetherControllerTest.cpp354 EXPECT_EQ(expected.txBytes, actual.txBytes); in expectTetherStatsEqual()
DNetdNativeService.cpp425 tetherStatsParcel->txBytes += tetherStats.txBytes; in tetherAddStatsByInterface()
435 result.txBytes = stats.txBytes; in toTetherStatsParcel()
461 t.iface.c_str(), t.rxBytes, t.rxPackets, t.txBytes, in tetherStatsParcelVecToStringVec()
DTrafficController.cpp1005 value.rxPackets, value.txBytes, value.txPackets); in dump()
1026 value.rxPackets, value.txBytes, value.txPackets); in dump()
1065 value.rxBytes, value.rxPackets, value.txBytes, value.txPackets); in dump()
/system/netd/server/aidl/netd/1/android/net/
DTetherStatsParcel.aidl6 long txBytes;
/system/netd/server/aidl/netd/2/android/net/
DTetherStatsParcel.aidl23 long txBytes;
/system/netd/server/binder/android/net/
DTetherStatsParcel.aidl28 long txBytes;
/system/netd/libnetdbpf/include/netdbpf/
DBpfNetworkStats.h47 int64_t txBytes; member
100 *unknownIfaceBytesTotal += (statsEntry.value().rxBytes + statsEntry.value().txBytes); in maybeLogUnknownIface()
/system/bpf/libbpf_android/include/bpf/
DBpfUtils.h85 uint64_t txBytes; member
91 uint64_t txBytes; member
/system/netd/bpf_progs/
Dnetd.h50 uint64_t txBytes; member
104 __sync_fetch_and_add(&value->txBytes, skb->len); \
/system/bpf/libbpf_android/
DBpfUtils.cpp70 return ((lhs.rxBytes == rhs.rxBytes) && (lhs.txBytes == rhs.txBytes) && in operator ==()
/system/netd/tests/
Dbinder_test.cpp1030 return {stats.rxBytes, stats.rxPackets, stats.txBytes, stats.txPackets}; in getStatsVectorByIf()