Home
last modified time | relevance | path

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

/system/netd/libnetdbpf/
DBpfNetworkStatsTest.cpp123 EXPECT_EQ(target.txBytes, result.txBytes); in expectStatsEqual()
135 EXPECT_EQ(target.txBytes, (uint64_t)result.txBytes); in expectStatsLineEqual()
195 .txBytes = 0, in TEST_F()
210 .txBytes = TEST_BYTES1, in TEST_F()
216 .txBytes = TEST_BYTES1 * 2, in TEST_F()
250 .txBytes = TEST_BYTES1, in TEST_F()
256 .txBytes = TEST_BYTES0, in TEST_F()
280 .txBytes = TEST_BYTES1 * 2 + TEST_BYTES0, in TEST_F()
292 .txBytes = TEST_BYTES1, in TEST_F()
327 .txBytes = TEST_BYTES1, in TEST_F()
[all …]
DBpfNetworkStats.cpp54 stats->txBytes = statsEntry.value().txBytes; in bpfGetUidStatsInternal()
94 stats->txBytes += statsEntry.value().txBytes; in bpfGetIfaceStatsInternal()
129 newLine.txBytes = statsEntry.txBytes; in populateStatsEntry()
337 txBytes = rhs.txBytes; in operator =()
345 txBytes += rhs.txBytes; in operator +=()
/system/netd/server/
DTetherController.h111 txBytes(txB), txPackets(txP) {}; in TetherStats()
116 int64_t txBytes = -1; variable
123 txBytes += other.txBytes; in addStatsIfMatch()
DTetherControllerTest.cpp357 EXPECT_EQ(expected.txBytes, actual.txBytes); in expectTetherStatsEqual()
DTetherController.cpp888 stats.txBytes = bytes; in addForwardChainStats()
895 if (stats.rxBytes != -1 && stats.txBytes != -1) { in addForwardChainStats()
896 ALOGV("rx_bytes=%" PRId64" tx_bytes=%" PRId64, stats.rxBytes, stats.txBytes); in addForwardChainStats()
903 if (((stats.rxBytes == -1) != (stats.txBytes == -1))) { in addForwardChainStats()
DNetdNativeService.cpp486 tetherStatsParcel->txBytes += tetherStats.txBytes; in tetherAddStatsByInterface()
496 result.txBytes = stats.txBytes; in toTetherStatsParcel()
523 t.iface.c_str(), t.rxBytes, t.rxPackets, t.txBytes, in tetherStatsParcelVecToStringVec()
DTrafficController.cpp901 value.rxPackets, value.txBytes, value.txPackets); in dump()
922 value.rxPackets, value.txBytes, value.txPackets); in dump()
961 value.rxBytes, value.rxPackets, value.txBytes, value.txPackets); in dump()
/system/netd/server/aidl_api/netd_aidl_interface/3/android/net/
DTetherStatsParcel.aidl24 long txBytes;
/system/netd/server/aidl_api/netd_aidl_interface/1/android/net/
DTetherStatsParcel.aidl6 long txBytes;
/system/netd/server/aidl_api/netd_aidl_interface/2/android/net/
DTetherStatsParcel.aidl23 long txBytes;
/system/netd/server/aidl_api/netd_aidl_interface/6/android/net/
DTetherStatsParcel.aidl40 long txBytes;
/system/netd/server/aidl_api/netd_aidl_interface/5/android/net/
DTetherStatsParcel.aidl24 long txBytes;
/system/netd/server/aidl_api/netd_aidl_interface/4/android/net/
DTetherStatsParcel.aidl24 long txBytes;
/system/netd/server/aidl_api/netd_aidl_interface/current/android/net/
DTetherStatsParcel.aidl40 long txBytes;
/system/netd/server/binder/android/net/
DTetherStatsParcel.aidl48 long txBytes;
/system/netd/server/aidl_api/netd_aidl_interface/7/android/net/
DTetherStatsParcel.aidl40 long txBytes;
/system/netd/libnetdbpf/include/netdbpf/
Dbpf_shared.h50 uint64_t txBytes; member
62 uint64_t txBytes; member
DBpfNetworkStats.h48 int64_t txBytes; member
101 *unknownIfaceBytesTotal += (statsEntry.value().rxBytes + statsEntry.value().txBytes); in maybeLogUnknownIface()
/system/netd/bpf_progs/
Dnetd.c123 __sync_fetch_and_add(&value->txBytes, bytes); \
/system/netd/tests/
Dbinder_test.cpp1154 return {stats.rxBytes, stats.rxPackets, stats.txBytes, stats.txPackets}; in getStatsVectorByIf()
3813 EXPECT_EQ(0, tetherStats.txBytes); in TEST_F()