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