Searched refs:counterSet (Results 1 – 10 of 10) sorted by relevance
/system/netd/bpf_progs/ |
D | netd.h | 42 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/ |
D | NetdClient.h | 49 int setCounterSet(uint32_t counterSet, uid_t uid);
|
/system/netd/libnetdbpf/ |
D | BpfNetworkStatsTest.cpp | 112 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()
|
D | BpfNetworkStats.cpp | 123 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/ |
D | BpfUtils.cpp | 61 return ((lhs.uid == rhs.uid) && (lhs.tag == rhs.tag) && (lhs.counterSet == rhs.counterSet) && in operator ==()
|
/system/bpf/libbpf_android/include/bpf/ |
D | BpfUtils.h | 77 uint32_t counterSet; member
|
/system/netd/client/ |
D | NetdClient.cpp | 411 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/ |
D | bpf_base_test.cpp | 173 StatsKey key = {.uid = TEST_UID, .tag = TEST_TAG, .counterSet = TEST_COUNTERSET, in TEST_F()
|
/system/netd/server/ |
D | TrafficControllerTest.cpp | 155 *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()
|
D | TrafficController.cpp | 1025 ifname.value().name, key.tag, key.uid, key.counterSet, value.rxBytes, in dump()
|