Home
last modified time | relevance | path

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

/frameworks/base/cmds/statsd/src/condition/
DStateTracker.cpp85 for (const auto& value : mSlicedState) { in dumpState()
99 if (mSlicedState.find(newKey) != mSlicedState.end()) { in hitGuardRail()
104 if (mSlicedState.size() > StatsdStats::kDimensionKeySizeSoftLimit - 1) { in hitGuardRail()
105 size_t newTupleCount = mSlicedState.size() + 1; in hitGuardRail()
133 mSlicedState.size() > 0 ? ConditionState::kTrue : ConditionState::kFalse; in evaluateCondition()
148 mSlicedState.size() > 0 ? ConditionState::kTrue : ConditionState::kFalse; in evaluateCondition()
156 auto it = mSlicedState.find(primaryKey); in evaluateCondition()
157 if (it == mSlicedState.end()) { in evaluateCondition()
158 mSlicedState[primaryKey] = state; in evaluateCondition()
165 mSlicedState[primaryKey] = state; in evaluateCondition()
[all …]
DStateTracker.h98 for (const auto& itr : mSlicedState) { in getTrueSlicedDimensions()
124 std::unordered_map<HashableDimensionKey, HashableDimensionKey> mSlicedState; variable