Searched refs:onCustomCollectionDump (Results 1 – 8 of 8) sorted by relevance
424 ASSERT_RESULT_OK(mCollector->onCustomCollectionDump(dump.fd)); in checkCustomDumpContents()537 ASSERT_RESULT_OK(mCollector->onCustomCollectionDump(customDump.fd)); in TEST_F()540 ASSERT_RESULT_OK(mCollector->onCustomCollectionDump(-1)); in TEST_F()603 ASSERT_RESULT_OK(mCollector->onCustomCollectionDump(customDump.fd)); in TEST_F()606 ASSERT_RESULT_OK(mCollector->onCustomCollectionDump(-1)); in TEST_F()
49 MOCK_METHOD(android::base::Result<void>, onCustomCollectionDump, (int), (override));
334 EXPECT_CALL(*servicePeer.mockDataProcessor, onCustomCollectionDump(customDump.fd)).Times(1); in TEST()335 EXPECT_CALL(*servicePeer.mockDataProcessor, onCustomCollectionDump(-1)).Times(1); in TEST()488 EXPECT_CALL(*servicePeer.mockDataProcessor, onCustomCollectionDump(-1)).Times(1); in TEST()
166 android::base::Result<void> onCustomCollectionDump(int fd) override;
110 virtual android::base::Result<void> onCustomCollectionDump(int fd) = 0;
142 android::base::Result<void> onCustomCollectionDump([[maybe_unused]] int fd) override {
493 if (const auto result = processor->onCustomCollectionDump(fd); !result.ok()) { in endCustomCollection()560 processor->onCustomCollectionDump(-1); in handleMessage()
384 Result<void> IoPerfCollection::onCustomCollectionDump(int fd) { in onCustomCollectionDump() function in android::automotive::watchdog::IoPerfCollection