Home
last modified time | relevance | path

Searched refs:eventMatcherValues (Results 1 – 6 of 6) sorted by relevance

/aosp12/packages/modules/StatsD/statsd/src/condition/
H A DSimpleConditionTracker.cpp268 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 DCombinationConditionTracker.cpp186 const LogEvent& event, const std::vector<MatchingState>& eventMatcherValues, in evaluateCondition() argument
199 child->evaluateCondition(event, eventMatcherValues, mAllConditions, in evaluateCondition()
H A DCombinationConditionTracker.h44 const std::vector<MatchingState>& eventMatcherValues,
H A DConditionTracker.h93 const std::vector<MatchingState>& eventMatcherValues,
H A DSimpleConditionTracker.h49 const std::vector<MatchingState>& eventMatcherValues,
/aosp12/packages/modules/StatsD/statsd/tests/metrics/parsing_utils/
H A Dconfig_update_utils_test.cpp749 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()