Home
last modified time | relevance | path

Searched refs:mRefractoryPeriodEndsSec (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/cmds/statsd/src/anomaly/
DAnomalyTracker.h99 const auto& it = mRefractoryPeriodEndsSec.find(key); in getRefractoryPeriodEndsSec()
100 return it != mRefractoryPeriodEndsSec.end() ? it->second : 0; in getRefractoryPeriodEndsSec()
151 unordered_map<MetricDimensionKey, uint32_t> mRefractoryPeriodEndsSec; variable
DAnomalyTracker.cpp220 mRefractoryPeriodEndsSec[key] = ((timestampNs + NS_PER_SEC - 1) / NS_PER_SEC) // round up in declareAnomaly()
253 const auto& it = mRefractoryPeriodEndsSec.find(key); in isInRefractoryPeriod()
254 if (it != mRefractoryPeriodEndsSec.end()) { in isInRefractoryPeriod()