Home
last modified time | relevance | path

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

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