Home
last modified time | relevance | path

Searched refs:onSystemStartup (Results 1 – 8 of 8) sorted by relevance

/packages/services/Car/cpp/watchdog/server/tests/
DMockDataProcessor.h36 MOCK_METHOD(android::base::Result<void>, onSystemStartup, (), (override));
DWatchdogPerfServiceTest.cpp154 EXPECT_CALL(*mMockDataProcessor, onSystemStartup()).Times(1); in startService()
228 EXPECT_CALL(*mMockDataProcessor, onSystemStartup()).Times(1); in TEST_F()
1087 EXPECT_CALL(*mMockDataProcessor, onSystemStartup()).Times(1); in TEST_F()
DIoPerfCollectionTest.cpp610 ASSERT_RESULT_OK(mCollector->onSystemStartup()); in TEST_F()
/packages/services/Car/cpp/watchdog/server/src/
DIoPerfCollection.h154 android::base::Result<void> onSystemStartup() override;
DIoOveruseMonitor.h117 android::base::Result<void> onSystemStartup() { in onSystemStartup() function
DWatchdogPerfService.h87 virtual android::base::Result<void> onSystemStartup() = 0;
DIoPerfCollection.cpp447 Result<void> IoPerfCollection::onSystemStartup() { in onSystemStartup() function in android::automotive::watchdog::IoPerfCollection
DWatchdogPerfService.cpp925 if (const auto result = processor->onSystemStartup(); !result.ok()) { in notifySystemStartUpLocked()