Home
last modified time | relevance | path

Searched refs:combinationMatcher (Results 1 – 4 of 4) sorted by relevance

/aosp12/packages/modules/StatsD/statsd/src/matchers/
H A DCombinationAtomMatchingTracker.cpp101 AtomMatcher_Combination combinationMatcher = matcher.combination(); in onConfigUpdated() local
102 for (const int64_t child : combinationMatcher.matcher()) { in onConfigUpdated()
/aosp12/packages/modules/StatsD/statsd/tests/e2e/
H A DConfigUpdate_e2e_test.cpp74 AtomMatcher* combinationMatcher = config.add_atom_matcher(); in TEST_F() local
75 combinationMatcher->set_id(StringToId("SyncOrWakelockMatcher")); in TEST_F()
76 combinationMatcher->mutable_combination()->set_operation(LogicalOperation::OR); in TEST_F()
77 addMatcherToMatcherCombination(syncStartMatcher, combinationMatcher); in TEST_F()
78 addMatcherToMatcherCombination(wakelockAcquireMatcher, combinationMatcher); in TEST_F()
150 *newConfig.add_atom_matcher() = *combinationMatcher; in TEST_F()
1628 AtomMatcher combinationMatcher; in TEST_F() local
1629 combinationMatcher.set_id(StringToId("combination")); in TEST_F()
1634 *config.add_atom_matcher() = combinationMatcher; in TEST_F()
1665 eventActivation->set_atom_matcher_id(combinationMatcher.id()); in TEST_F()
[all …]
/aosp12/packages/modules/StatsD/statsd/tests/
H A Dstatsd_test_util.h132 void addMatcherToMatcherCombination(const AtomMatcher& matcher, AtomMatcher* combinationMatcher);
H A Dstatsd_test_util.cpp244 void addMatcherToMatcherCombination(const AtomMatcher& matcher, AtomMatcher* combinationMatcher) { in addMatcherToMatcherCombination() argument
245 combinationMatcher->mutable_combination()->add_matcher(matcher.id()); in addMatcherToMatcherCombination()