Searched refs:eventMatcherValues (Results 1 – 6 of 6) sorted by relevance
/aosp12/packages/modules/StatsD/statsd/src/condition/ |
H A D | SimpleConditionTracker.cpp | 268 const vector<MatchingState>& eventMatcherValues, in evaluateCondition() argument 281 if (mStopAllLogMatcherIndex >= 0 && mStopAllLogMatcherIndex < int(eventMatcherValues.size()) && in evaluateCondition() 282 eventMatcherValues[mStopAllLogMatcherIndex] == MatchingState::kMatched) { in evaluateCondition() 291 eventMatcherValues[mStartLogMatcherIndex] == MatchingState::kMatched) { in evaluateCondition() 296 eventMatcherValues[mStopLogMatcherIndex] == MatchingState::kMatched) { in evaluateCondition()
|
H A D | CombinationConditionTracker.cpp | 186 const LogEvent& event, const std::vector<MatchingState>& eventMatcherValues, in evaluateCondition() argument 199 child->evaluateCondition(event, eventMatcherValues, mAllConditions, in evaluateCondition()
|
H A D | CombinationConditionTracker.h | 44 const std::vector<MatchingState>& eventMatcherValues,
|
H A D | ConditionTracker.h | 93 const std::vector<MatchingState>& eventMatcherValues,
|
H A D | SimpleConditionTracker.h | 49 const std::vector<MatchingState>& eventMatcherValues,
|
/aosp12/packages/modules/StatsD/statsd/tests/metrics/parsing_utils/ |
H A D | config_update_utils_test.cpp | 749 vector<MatchingState> eventMatcherValues(6, MatchingState::kNotMatched); in TEST_F() local 750 eventMatcherValues[1] = MatchingState::kMatched; in TEST_F() 753 oldConditionTrackers[0]->evaluateCondition(event, eventMatcherValues, oldConditionTrackers, in TEST_F()
|