Home
last modified time | relevance | path

Searched refs:ReportTimeToReboot (Results 1 – 6 of 6) sorted by relevance

/system/update_engine/common/
Dmetrics_reporter_stub.h80 void ReportTimeToReboot(int time_to_reboot_minutes) override {} in ReportTimeToReboot() function
Dmock_metrics_reporter.h80 MOCK_METHOD1(ReportTimeToReboot, void(int time_to_reboot_minutes));
Dmetrics_reporter_interface.h197 virtual void ReportTimeToReboot(int time_to_reboot_minutes) = 0;
/system/update_engine/aosp/
Dupdate_attempter_android_unittest.cc106 EXPECT_CALL(*metrics_reporter_, ReportTimeToReboot(_)).Times(0); in TEST_F()
136 EXPECT_CALL(*metrics_reporter_, ReportTimeToReboot(duration.InMinutes())) in TEST_F()
Dmetrics_reporter_android.h85 void ReportTimeToReboot(int time_to_reboot_minutes) override {} in ReportTimeToReboot() function
/system/update_engine/
Dmetrics_utils.cc374 metrics_reporter->ReportTimeToReboot(time_to_reboot.InMinutes()); in LoadAndReportTimeToReboot()