Home
last modified time | relevance | path

Searched refs:rxBytes (Results 1 – 22 of 22) sorted by relevance

/system/netd/libnetdbpf/
DBpfNetworkStatsTest.cpp121 EXPECT_EQ(target.rxBytes, result.rxBytes); in expectStatsEqual()
133 EXPECT_EQ(target.rxBytes, (uint64_t)result.rxBytes); in expectStatsLineEqual()
193 .rxBytes = 0, in TEST_F()
208 .rxBytes = TEST_BYTES0, in TEST_F()
214 .rxBytes = TEST_BYTES0 * 2, in TEST_F()
248 .rxBytes = TEST_BYTES0, in TEST_F()
254 .rxBytes = TEST_BYTES1, in TEST_F()
278 .rxBytes = TEST_BYTES0 * 2 + TEST_BYTES1, in TEST_F()
290 .rxBytes = TEST_BYTES0, in TEST_F()
325 .rxBytes = TEST_BYTES0, in TEST_F()
[all …]
DBpfNetworkStats.cpp53 stats->rxBytes = statsEntry.value().rxBytes; in bpfGetUidStatsInternal()
93 stats->rxBytes += statsEntry.value().rxBytes; in bpfGetIfaceStatsInternal()
128 newLine.rxBytes = statsEntry.rxBytes; in populateStatsEntry()
336 rxBytes = rhs.rxBytes; in operator =()
344 rxBytes += rhs.rxBytes; in operator +=()
/system/netd/server/
DTetherController.h110 rxBytes(rxB), rxPackets(rxP), in TetherStats()
114 int64_t rxBytes = -1; variable
121 rxBytes += other.rxBytes; in addStatsIfMatch()
DTrafficControllerTest.cpp155 StatsValue statsMapValue = {.rxPackets = 1, .rxBytes = 100}; in populateFakeStats()
289 EXPECT_EQ((uint64_t)100, statsMapResult.value().rxBytes); in expectFakeStatsUnchanged()
294 EXPECT_EQ((uint64_t)100, statsMapResult.value().rxBytes); in expectFakeStatsUnchanged()
298 EXPECT_EQ((uint64_t)100, appStatsResult.value().rxBytes); in expectFakeStatsUnchanged()
475 ASSERT_EQ((uint64_t)100, statsMapResult.value().rxBytes); in TEST_F()
479 ASSERT_EQ((uint64_t)100, appStatsResult.value().rxBytes); in TEST_F()
524 ASSERT_EQ((uint64_t)100, statsMapResult.value().rxBytes); in TEST_F()
556 ASSERT_EQ((uint64_t)100, statsMapResult.value().rxBytes); in TEST_F()
560 ASSERT_EQ((uint64_t)100, appStatsResult.value().rxBytes); in TEST_F()
DTetherControllerTest.cpp356 EXPECT_EQ(expected.rxBytes, actual.rxBytes); in expectTetherStatsEqual()
DTetherController.cpp893 stats.rxBytes = 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.cpp484 tetherStatsParcel->rxBytes += tetherStats.rxBytes; in tetherAddStatsByInterface()
494 result.rxBytes = stats.rxBytes; in toTetherStatsParcel()
523 t.iface.c_str(), t.rxBytes, t.rxPackets, t.txBytes, in tetherStatsParcelVecToStringVec()
DTrafficController.cpp900 dw.println("%u %" PRIu64 " %" PRIu64 " %" PRIu64 " %" PRIu64, key, value.rxBytes, in dump()
921 ifname.value().name, key.tag, key.uid, key.counterSet, value.rxBytes, 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.aidl22 long rxBytes;
/system/netd/server/aidl_api/netd_aidl_interface/1/android/net/
DTetherStatsParcel.aidl4 long rxBytes;
/system/netd/server/aidl_api/netd_aidl_interface/2/android/net/
DTetherStatsParcel.aidl21 long rxBytes;
/system/netd/server/aidl_api/netd_aidl_interface/6/android/net/
DTetherStatsParcel.aidl38 long rxBytes;
/system/netd/server/aidl_api/netd_aidl_interface/5/android/net/
DTetherStatsParcel.aidl22 long rxBytes;
/system/netd/server/aidl_api/netd_aidl_interface/4/android/net/
DTetherStatsParcel.aidl22 long rxBytes;
/system/netd/server/aidl_api/netd_aidl_interface/current/android/net/
DTetherStatsParcel.aidl38 long rxBytes;
/system/netd/server/binder/android/net/
DTetherStatsParcel.aidl42 long rxBytes;
/system/netd/server/aidl_api/netd_aidl_interface/7/android/net/
DTetherStatsParcel.aidl38 long rxBytes;
/system/netd/libnetdbpf/include/netdbpf/
Dbpf_shared.h48 uint64_t rxBytes; member
60 uint64_t rxBytes; member
DBpfNetworkStats.h46 int64_t rxBytes; member
101 *unknownIfaceBytesTotal += (statsEntry.value().rxBytes + statsEntry.value().txBytes); in maybeLogUnknownIface()
/system/netd/tests/
Dbpf_base_test.cpp154 StatsValue statsMapValue = {.rxPackets = 1, .rxBytes = 100}; in TEST_F()
Dbinder_test.cpp1154 return {stats.rxBytes, stats.rxPackets, stats.txBytes, stats.txPackets}; in getStatsVectorByIf()
3811 EXPECT_EQ(static_cast<int64_t>(sizeof(pkt)), tetherStats.rxBytes); in TEST_F()
/system/netd/bpf_progs/
Dnetd.c126 __sync_fetch_and_add(&value->rxBytes, bytes); \