Home
last modified time | relevance | path

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

/packages/modules/StatsD/statsd/src/condition/
DSimpleConditionTracker.cpp269 const vector<MatchingState>& eventMatcherValues, in evaluateCondition() argument
282 if (mStopAllLogMatcherIndex >= 0 && mStopAllLogMatcherIndex < int(eventMatcherValues.size()) && in evaluateCondition()
283 eventMatcherValues[mStopAllLogMatcherIndex] == MatchingState::kMatched) { in evaluateCondition()
292 eventMatcherValues[mStartLogMatcherIndex] == MatchingState::kMatched) { in evaluateCondition()
297 eventMatcherValues[mStopLogMatcherIndex] == MatchingState::kMatched) { in evaluateCondition()
DCombinationConditionTracker.cpp203 const LogEvent& event, const std::vector<MatchingState>& eventMatcherValues, in evaluateCondition() argument
216 child->evaluateCondition(event, eventMatcherValues, mAllConditions, in evaluateCondition()
DCombinationConditionTracker.h46 const std::vector<MatchingState>& eventMatcherValues,
DConditionTracker.h95 const std::vector<MatchingState>& eventMatcherValues,
DSimpleConditionTracker.h51 const std::vector<MatchingState>& eventMatcherValues,
/packages/modules/StatsD/statsd/tests/metrics/parsing_utils/
Dconfig_update_utils_test.cpp811 vector<MatchingState> eventMatcherValues(6, MatchingState::kNotMatched); in TEST_F() local
812 eventMatcherValues[1] = MatchingState::kMatched; in TEST_F()
815 oldConditionTrackers[0]->evaluateCondition(event, eventMatcherValues, oldConditionTrackers, in TEST_F()