Home
last modified time | relevance | path

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

/packages/modules/StatsD/statsd/tests/
DLogEventFilter_test.cpp44 atLeastOneInUse |= filter.isAtomInUse(atomId); in testGuaranteedUnusedAtomsNotInUse()
62 EXPECT_FALSE(filter.isAtomInUse(atomId)); in TEST_F()
67 EXPECT_FALSE(filter.isAtomInUse(1)); in TEST_F()
72 EXPECT_FALSE(filter.isAtomInUse(1)); in TEST_F()
81 EXPECT_TRUE(filter.isAtomInUse(atomId)); in TEST_F()
94 EXPECT_TRUE(filter.isAtomInUse(atomId)); in TEST_F()
106 EXPECT_EQ(atomInUse, filter.isAtomInUse(atomId)); in TEST_F()
117 EXPECT_TRUE(filter.isAtomInUse(atomId)); in TEST_F()
131 EXPECT_TRUE(filter.isAtomInUse(atomId)); in TEST_F()
142 EXPECT_EQ(atomInUse, filter.isAtomInUse(atomId)); in TEST_F()
[all …]
/packages/modules/StatsD/statsd/benchmark/
Dlog_event_filter_benchmark.cpp87 benchmark::DoNotOptimize(eventFilter.isAtomInUse(atomId)); in BM_LogEventFilterUnorderedSet()
103 benchmark::DoNotOptimize(eventFilter.isAtomInUse(atomId)); in BM_LogEventFilterUnorderedSet2Consumers()
116 benchmark::DoNotOptimize(eventFilter.isAtomInUse(atomId)); in BM_LogEventFilterSet()
132 benchmark::DoNotOptimize(eventFilter.isAtomInUse(atomId)); in BM_LogEventFilterSet2Consumers()
/packages/modules/StatsD/statsd/src/socket/
DLogEventFilter.h63 virtual bool isAtomInUse(int atomId) const { in isAtomInUse() function
DBaseStatsSocketListener.cpp112 if (filter.isAtomInUse(logEvent->GetTagId())) { in processStatsEventBuffer()