Home
last modified time | relevance | path

Searched refs:mWatchdogBinderMediator (Results 1 – 3 of 3) sorted by relevance

/packages/services/Car/cpp/watchdog/server/tests/
DWatchdogBinderMediatorTest.cpp98 mWatchdogBinderMediator = in SetUp()
105 internal::WatchdogBinderMediatorPeer peer(mWatchdogBinderMediator.get()); in SetUp()
113 mWatchdogBinderMediator.reset(); in TearDown()
120 std::shared_ptr<WatchdogBinderMediator> mWatchdogBinderMediator; member in android::automotive::watchdog::WatchdogBinderMediatorTest
188 ASSERT_EQ(mWatchdogBinderMediator->dump(-1, args, /*numArgs=*/5), OK); in TEST_F()
198 auto status = mWatchdogBinderMediator->registerClient(client, timeout); in TEST_F()
209 auto status = mWatchdogBinderMediator->unregisterClient(client); in TEST_F()
220 auto status = mWatchdogBinderMediator->tellClientAlive(client, 456); in TEST_F()
232 auto status = mWatchdogBinderMediator->addResourceOveruseListener({ResourceType::IO}, listener); in TEST_F()
242 ASSERT_FALSE(mWatchdogBinderMediator->addResourceOveruseListener({}, listener).isOk()) in TEST_F()
[all …]
/packages/services/Car/cpp/watchdog/server/src/
DServiceManager.cpp39 if (mWatchdogBinderMediator != nullptr || mWatchdogServiceHelper != nullptr || in startServices()
70 mWatchdogBinderMediator = in startServices()
74 if (auto result = mWatchdogBinderMediator->init(); !result.ok()) { in startServices()
90 if (mWatchdogBinderMediator != nullptr) { in terminateServices()
91 mWatchdogBinderMediator->terminate(); in terminateServices()
92 mWatchdogBinderMediator.reset(); in terminateServices()
DServiceManager.h42 mWatchdogBinderMediator(nullptr), in ServiceManager()
93 std::shared_ptr<WatchdogBinderMediatorInterface> mWatchdogBinderMediator; variable