Home
last modified time | relevance | path

Searched refs:mLogEventFilter (Results 1 – 10 of 10) sorted by relevance

/packages/modules/StatsD/statsd/tests/
DSocketListener_test.cpp72 std::shared_ptr<LogEventFilter> mLogEventFilter; member in android::os::statsd::SocketParseMessageTestNoFiltering
77 mLogEventFilter(GetParam() ? std::make_shared<LogEventFilter>() : nullptr) { in SocketParseMessageTestNoFiltering()
90 mLogEventFilter->setFilteringEnabled(false); in TEST_P()
93 generateAtomLogging(mEventQueue, mLogEventFilter, kEventCount, kAtomId); in TEST_P()
107 mLogEventFilter->setFilteringEnabled(false); in TEST_P()
109 mLogEventFilter->setAtomIds(idsList, nullptr); in TEST_P()
112 generateAtomLogging(mEventQueue, mLogEventFilter, kEventCount, kAtomId); in TEST_P()
/packages/modules/StatsD/statsd/tests/e2e/
DConfigUpdate_e2e_test.cpp72 std::shared_ptr<MockLogEventFilter> mLogEventFilter; member in android::os::statsd::ConfigUpdateE2eTest
75 mLogEventFilter = GetParam() ? std::make_shared<MockLogEventFilter>() : nullptr; in SetUp()
135 config, key, mLogEventFilter); in TEST_P()
197 EXPECT_CALL(*mLogEventFilter, in TEST_P()
377 config, key, mLogEventFilter); in TEST_P()
440 EXPECT_CALL(*mLogEventFilter, in TEST_P()
653 config, key, mLogEventFilter); in TEST_P()
729 EXPECT_CALL(*mLogEventFilter, in TEST_P()
993 Expectation initCall = EXPECT_CALL(*mLogEventFilter, in TEST_P()
996 EXPECT_CALL(*mLogEventFilter, setAtomIds(CreateAtomIdSetFromConfig(config), _)) in TEST_P()
[all …]
/packages/modules/StatsD/statsd/src/shell/
DShellSubscriber.h61 : mUidMap(uidMap), mPullerMgr(pullerMgr), mLogEventFilter(logEventFilter){}; in ShellSubscriber()
100 std::shared_ptr<LogEventFilter> mLogEventFilter; variable
DShellSubscriber.cpp194 if (!mLogEventFilter) { in updateLogEventFilterLocked()
202 mLogEventFilter->setAtomIds(std::move(allAtomIds), this); in updateLogEventFilterLocked()
/packages/modules/StatsD/statsd/src/socket/
DStatsSocketListener.cpp43 mLogEventFilter(logEventFilter) { in StatsSocketListener()
128 processMessage(msg, len, uid, pid, mQueue, mLogEventFilter); in onDataAvailable()
DStatsSocketListener.h72 std::shared_ptr<LogEventFilter> mLogEventFilter; variable
/packages/modules/StatsD/statsd/src/
DStatsLogProcessor.h153 if (mLogEventFilter) { in setPrintLogs()
156 mLogEventFilter->setFilteringEnabled(!enabled); in setPrintLogs()
225 std::shared_ptr<LogEventFilter> mLogEventFilter; variable
DStatsService.h460 std::shared_ptr<LogEventFilter> mLogEventFilter; variable
DStatsLogProcessor.cpp106 mLogEventFilter(logEventFilter), in StatsLogProcessor()
1482 if (!mLogEventFilter) { in updateLogEventFilterLocked()
1491 mLogEventFilter->setAtomIds(std::move(allAtomIds), this); in updateLogEventFilterLocked()
DStatsService.cpp156 mLogEventFilter(logEventFilter),
1511 mShellSubscriber = new ShellSubscriber(mUidMap, mPullerManager, mLogEventFilter); in initShellSubscriber()