Home
last modified time | relevance | path

Searched refs:StaticType (Results 1 – 19 of 19) sorted by relevance

/system/update_engine/
Dupdate_boot_flags_action.h35 static std::string StaticType() { return "UpdateBootFlagsAction"; } in StaticType() function
36 std::string Type() const override { return StaticType(); } in Type()
Domaha_response_handler_action.h60 static std::string StaticType() { return "OmahaResponseHandlerAction"; } in StaticType() function
61 std::string Type() const override { return StaticType(); } in Type()
Domaha_request_action.h119 static std::string StaticType() { return "OmahaRequestAction"; } in StaticType() function
120 std::string Type() const override { return StaticType(); } in Type()
Dcleanup_previous_update_action.h61 static std::string StaticType();
Dupdate_attempter.cc117 if (type == OmahaRequestAction::StaticType()) in GetErrorCodeForAction()
119 if (type == OmahaResponseHandlerAction::StaticType()) in GetErrorCodeForAction()
121 if (type == FilesystemVerifierAction::StaticType()) in GetErrorCodeForAction()
123 if (type == PostinstallRunnerAction::StaticType()) in GetErrorCodeForAction()
1301 if (type == DownloadAction::StaticType()) { in ActionCompleted()
1305 } else if (type == OmahaRequestAction::StaticType()) { in ActionCompleted()
1338 } else if (type == OmahaResponseHandlerAction::StaticType()) { in ActionCompleted()
1390 if (type == DownloadAction::StaticType()) { in ActionCompleted()
1392 } else if (type == FilesystemVerifierAction::StaticType()) { in ActionCompleted()
Dupdate_attempter_android.cc573 if (type == CleanupPreviousUpdateAction::StaticType() || in ActionCompleted()
574 (type == NoOpAction::StaticType() && in ActionCompleted()
582 if (type == PostinstallRunnerAction::StaticType()) { in ActionCompleted()
591 if (type == UpdateBootFlagsAction::StaticType()) { in ActionCompleted()
594 if (type == DownloadAction::StaticType()) { in ActionCompleted()
598 } else if (type == FilesystemVerifierAction::StaticType()) { in ActionCompleted()
Dcleanup_previous_update_action.cc99 return StaticType(); in Type()
102 std::string CleanupPreviousUpdateAction::StaticType() { in StaticType() function in chromeos_update_engine::CleanupPreviousUpdateAction
Dupdate_attempter_unittest.cc448 if (aa->Type() == OmahaRequestAction::StaticType()) { in SessionIdTestEnforceEmptyStrPingOmaha()
475 if (aa->Type() == OmahaRequestAction::StaticType()) in SessionIdTestConsistencyInUpdateFlow()
499 if (aa->Type() == DownloadAction::StaticType()) { in SessionIdTestInDownloadAction()
742 &AbstractAction::Type, OmahaRequestAction::StaticType())))); in TEST_F()
755 return {OmahaRequestAction::StaticType(), in GetUpdateActionTypes()
756 OmahaResponseHandlerAction::StaticType(), in GetUpdateActionTypes()
757 UpdateBootFlagsAction::StaticType(), in GetUpdateActionTypes()
758 OmahaRequestAction::StaticType(), in GetUpdateActionTypes()
759 DownloadAction::StaticType(), in GetUpdateActionTypes()
760 OmahaRequestAction::StaticType(), in GetUpdateActionTypes()
[all …]
Domaha_response_handler_action_unittest.cc59 if (action->Type() == OmahaResponseHandlerAction::StaticType()) { in ActionCompleted()
67 ObjectCollectorAction<InstallPlan>::StaticType()) { in ActionCompleted()
Domaha_request_action_unittest.cc311 if (action->Type() == OmahaRequestAction::StaticType()) { in ActionCompleted()
326 ObjectCollectorAction<OmahaResponse>::StaticType()) { in ActionCompleted()
/system/update_engine/payload_consumer/
Dfilesystem_verifier_action.h81 static std::string StaticType() { return "FilesystemVerifierAction"; } in StaticType() function
82 std::string Type() const override { return StaticType(); } in Type()
Dpostinstall_runner_action.h64 static std::string StaticType() { return "PostinstallRunnerAction"; } in StaticType() function
65 std::string Type() const override { return StaticType(); } in Type()
Ddownload_action.h70 static std::string StaticType() { return "DownloadAction"; } in StaticType() function
89 std::string Type() const override { return StaticType(); } in Type()
Dinstall_plan.h196 static std::string StaticType() { return "InstallPlanAction"; } in StaticType() function
197 std::string Type() const override { return StaticType(); } in Type()
Dfilesystem_verifier_action_unittest.cc72 if (action->Type() == FilesystemVerifierAction::StaticType()) { in ActionCompleted()
77 ObjectCollectorAction<InstallPlan>::StaticType()) { in ActionCompleted()
213 if (action->Type() == FilesystemVerifierAction::StaticType()) { in ActionCompleted()
Ddownload_action_unittest.cc90 if (type == DownloadAction::StaticType()) { in ActionCompleted()
437 static std::string StaticType() { return "DownloadActionTestAction"; } in StaticType() function in chromeos_update_engine::DownloadActionTestAction
438 string Type() const { return StaticType(); } in Type()
455 if (action->Type() == DownloadActionTestAction::StaticType()) { in ActionCompleted()
Dpostinstall_runner_action_unittest.cc67 if (action->Type() == PostinstallRunnerAction::StaticType()) { in ActionCompleted()
/system/update_engine/common/
Dtest_utils.h211 static std::string StaticType() { return "ObjectFeederAction"; } in StaticType() function
212 std::string Type() const { return StaticType(); } in Type()
244 static std::string StaticType() { return "ObjectCollectorAction"; } in StaticType() function
245 std::string Type() const { return StaticType(); } in Type()
Daction.h232 static std::string StaticType() { return "NoOpAction"; } in StaticType() function
233 std::string Type() const override { return StaticType(); } in Type()