Home
last modified time | relevance | path

Searched refs:PullerKey (Results 1 – 3 of 3) sorted by relevance

/packages/modules/StatsD/statsd/src/external/
DStatsPullerManager.h41 typedef struct PullerKey { struct
47 bool operator<(const PullerKey& that) const { argument
57 bool operator==(const PullerKey& that) const {
60 } PullerKey; typedef
126 std::map<const PullerKey, sp<StatsPuller>> kAllPullAtomInfo;
DStatsPullerManager.cpp94 PullerKey key = {.uid = uid, .atomTag = tagId}; in PullLocked()
337 PullerKey key = {.uid = uid, .atomTag = atomTag}; in RegisterPullAtomCallback()
350 PullerKey key = {.uid = uid, .atomTag = atomTag}; in UnregisterPullAtomCallback()
/packages/modules/StatsD/service/java/com/android/server/stats/
DStatsManagerService.java151 private static class PullerKey { class in StatsManagerService
155 PullerKey(int uid, int atom) { in PullerKey() method in StatsManagerService.PullerKey
175 if (obj instanceof PullerKey) { in equals()
176 PullerKey other = (PullerKey) obj; in equals()
214 private final ArrayMap<PullerKey, PullerValue> mPullers = new ArrayMap<>();
225 PullerKey key = new PullerKey(callingUid, atomTag); in registerPullAtomCallback()
255 PullerKey key = new PullerKey(callingUid, atomTag); in unregisterPullAtomCallback()
763 ArrayMap<PullerKey, PullerValue> pullersCopy; in registerAllPullers()
768 for (Map.Entry<PullerKey, PullerValue> entry : pullersCopy.entrySet()) { in registerAllPullers()
769 PullerKey key = entry.getKey(); in registerAllPullers()