Home
last modified time | relevance | path

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

/aosp12/packages/modules/StatsD/statsd/src/condition/
H A DSimpleConditionTracker.cpp184 void SimpleConditionTracker::handleConditionEvent(const HashableDimensionKey& outputKey, in handleConditionEvent() argument
188 auto outputIt = mSlicedConditionState.find(outputKey); in handleConditionEvent()
190 if (hitGuardRail(outputKey)) { in handleConditionEvent()
200 mSlicedConditionState[outputKey] = 1; in handleConditionEvent()
202 mLastChangedToTrueDimensions.insert(outputKey); in handleConditionEvent()
206 mSlicedConditionState[outputKey] = 0; in handleConditionEvent()
207 mLastChangedToFalseDimensions.insert(outputKey); in handleConditionEvent()
217 mLastChangedToTrueDimensions.insert(outputKey); in handleConditionEvent()
241 mLastChangedToFalseDimensions.insert(outputKey); in handleConditionEvent()
249 VLOG("erase key %s", outputKey.toString().c_str()); in handleConditionEvent()
H A DSimpleConditionTracker.h123 void handleConditionEvent(const HashableDimensionKey& outputKey, bool matchStart,