Home
last modified time | relevance | path

Searched refs:createCountMetric (Results 1 – 5 of 5) sorted by relevance

/aosp12/packages/modules/StatsD/statsd/tests/metrics/parsing_utils/
H A Dconfig_update_utils_test.cpp1916 CountMetric count1 = createCountMetric("COUNT1", matcher1Id, predicate1Id, {state1Id}); in TEST_F()
1921 CountMetric count2 = createCountMetric("COUNT2", matcher2Id, nullopt, {}); in TEST_F()
1926 CountMetric count3 = createCountMetric("COUNT3", matcher3Id, nullopt, {}); in TEST_F()
1931 CountMetric count4 = createCountMetric("COUNT4", matcher4Id, nullopt, {state2Id}); in TEST_F()
1936 CountMetric count5 = createCountMetric("COUNT5", matcher5Id, nullopt, {}); in TEST_F()
1967 CountMetric count6 = createCountMetric("EVENT6", matcher2Id, predicate1Id, {state1Id}); in TEST_F()
3066 CountMetric countMetric = createCountMetric("COUNT1", matcher1Id, predicate1Id, {}); in TEST_F()
3233 *config.add_count_metric() = createCountMetric("VALUE1", whatMatcher.id(), nullopt, {}); in TEST_F()
3250 CountMetric metric = createCountMetric("VALUE1", whatMatcher.id(), nullopt, {}); in TEST_F()
3268 *config.add_count_metric() = createCountMetric("VALUE1", whatMatcher.id(), nullopt, {}); in TEST_F()
[all …]
/aosp12/packages/modules/StatsD/statsd/tests/e2e/
H A DConfigUpdate_e2e_test.cpp312 createCountMetric("CountSyncPerUidWhileScreenOnHoldingWLSliceProcessState", in TEST_F()
330 CountMetric countChange = createCountMetric("Count*WhileScreenOn", syncStartMatcher.id(), in TEST_F()
332 CountMetric countRemove = createCountMetric("CountSync", syncStartMatcher.id(), nullopt, {}); in TEST_F()
397 CountMetric countNew = createCountMetric("CountWlWhileScreenOn", wakelockAcquireMatcher.id(), in TEST_F()
1637 createCountMetric("ImmediateMetric", syncStartMatcher.id(), nullopt, {}); in TEST_F()
1638 CountMetric bootMetric = createCountMetric("BootMetric", syncStartMatcher.id(), nullopt, {}); in TEST_F()
1640 createCountMetric("CombinationMetric", syncStartMatcher.id(), nullopt, {}); in TEST_F()
1877 createCountMetric("CountWakelock", wakelockAcquireMatcher.id(), nullopt, {}); in TEST_F()
1881 CountMetric countSync = createCountMetric("CountSync", syncStartMatcher.id(), nullopt, {}); in TEST_F()
H A DCountMetric_e2e_test.cpp909 CountMetric countMetric = createCountMetric("COUNT", appCrashMatcher.id(), nullopt, {}); in TEST()
/aosp12/packages/modules/StatsD/statsd/tests/
H A Dstatsd_test_util.h212 CountMetric createCountMetric(const string& name, const int64_t what,
H A Dstatsd_test_util.cpp464 CountMetric createCountMetric(const string& name, const int64_t what, in createCountMetric() function