Home
last modified time | relevance | path

Searched refs:counterSet (Results 1 – 10 of 10) sorted by relevance

/system/netd/bpf_progs/
Dnetd.h42 uint32_t counterSet; member
226 stats_key key = {.uid = uid, .tag = tag, .counterSet = 0, .ifaceIndex = skb->ifindex}; in bpf_traffic_account()
228 uint8_t* counterSet = bpf_uid_counterset_map_lookup_elem(&uid); in bpf_traffic_account() local
229 if (counterSet) key.counterSet = (uint32_t)*counterSet; in bpf_traffic_account()
/system/netd/include/
DNetdClient.h49 int setCounterSet(uint32_t counterSet, uid_t uid);
/system/netd/libnetdbpf/
DBpfNetworkStatsTest.cpp112 void populateFakeStats(uid_t uid, uint32_t tag, uint32_t ifaceIndex, uint32_t counterSet, in populateFakeStats() argument
115 .uid = (uint32_t)uid, .tag = tag, .counterSet = counterSet, .ifaceIndex = ifaceIndex}; in populateFakeStats()
133 int counterSet, uint32_t tag, const stats_line& result) { in expectStatsLineEqual() argument
136 EXPECT_EQ((uint32_t) counterSet, result.set); in expectStatsLineEqual()
388 .counterSet = TEST_COUNTERSET0}; in TEST_F()
DBpfNetworkStats.cpp123 newLine.set = (int32_t)statsKey.counterSet; in populateStatsEntry()
244 .uid = (uint32_t)UID_ALL, .counterSet = (uint32_t)SET_ALL, .tag = (uint32_t)TAG_NONE}; in parseBpfNetworkStatsDevInternal()
/system/bpf/libbpf_android/
DBpfUtils.cpp61 return ((lhs.uid == rhs.uid) && (lhs.tag == rhs.tag) && (lhs.counterSet == rhs.counterSet) && in operator ==()
/system/bpf/libbpf_android/include/bpf/
DBpfUtils.h77 uint32_t counterSet; member
/system/netd/client/
DNetdClient.cpp411 extern "C" int setCounterSet(uint32_t counterSet, uid_t uid) { in setCounterSet() argument
412 FwmarkCommand command = {FwmarkCommand::SET_COUNTERSET, 0, uid, counterSet}; in setCounterSet()
/system/netd/tests/
Dbpf_base_test.cpp173 StatsKey key = {.uid = TEST_UID, .tag = TEST_TAG, .counterSet = TEST_COUNTERSET, in TEST_F()
/system/netd/server/
DTrafficControllerTest.cpp155 *key = {.uid = uid, .tag = tag, .counterSet = TEST_COUNTERSET, .ifaceIndex = 1}; in populateFakeStats()
157 uint8_t counterSet = TEST_COUNTERSET; in populateFakeStats() local
158 EXPECT_TRUE(isOk(mFakeUidCounterSetMap.writeValue(uid, counterSet, BPF_ANY))); in populateFakeStats()
DTrafficController.cpp1025 ifname.value().name, key.tag, key.uid, key.counterSet, value.rxBytes, in dump()