Home
last modified time | relevance | path

Searched refs:StaticType (Results 1 – 20 of 20) 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()
/system/update_engine/cros/
Domaha_response_handler_action.h59 static std::string StaticType() { return "OmahaResponseHandlerAction"; } in StaticType() function
60 std::string Type() const override { return StaticType(); } in Type()
Ddownload_action_chromeos.h46 static std::string StaticType() { return "DownloadActionChromeos"; } in StaticType() function
64 std::string Type() const override { return StaticType(); } in Type()
Domaha_request_action.h117 static std::string StaticType() { return "OmahaRequestAction"; } in StaticType() function
118 std::string Type() const override { return StaticType(); } in Type()
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()
1252 if (type == DownloadActionChromeos::StaticType()) { in ActionCompleted()
1257 } else if (type == OmahaRequestAction::StaticType()) { in ActionCompleted()
1290 } else if (type == OmahaResponseHandlerAction::StaticType()) { in ActionCompleted()
1343 if (type == DownloadAction::StaticType()) { in ActionCompleted()
1345 } else if (type == FilesystemVerifierAction::StaticType()) { in ActionCompleted()
Dupdate_attempter_unittest.cc425 if (aa->Type() == OmahaRequestAction::StaticType()) { in SessionIdTestEnforceEmptyStrPingOmaha()
452 if (aa->Type() == OmahaRequestAction::StaticType()) in SessionIdTestConsistencyInUpdateFlow()
476 if (aa->Type() == DownloadActionChromeos::StaticType()) { in SessionIdTestInDownloadAction()
705 &AbstractAction::Type, OmahaRequestAction::StaticType())))); in TEST_F()
718 return {OmahaRequestAction::StaticType(), in GetUpdateActionTypes()
719 OmahaResponseHandlerAction::StaticType(), in GetUpdateActionTypes()
720 UpdateBootFlagsAction::StaticType(), in GetUpdateActionTypes()
721 OmahaRequestAction::StaticType(), in GetUpdateActionTypes()
722 DownloadActionChromeos::StaticType(), in GetUpdateActionTypes()
723 OmahaRequestAction::StaticType(), in GetUpdateActionTypes()
[all …]
Ddownload_action_chromeos_unittest.cc89 if (type == DownloadActionChromeos::StaticType()) { in ActionCompleted()
433 static std::string StaticType() { return "DownloadActionTestAction"; } in StaticType() function in chromeos_update_engine::DownloadActionTestAction
434 string Type() const { return StaticType(); } in Type()
451 if (action->Type() == DownloadActionTestAction::StaticType()) { in ActionCompleted()
Domaha_response_handler_action_unittest.cc59 if (action->Type() == OmahaResponseHandlerAction::StaticType()) { in ActionCompleted()
67 ObjectCollectorAction<InstallPlan>::StaticType()) { in ActionCompleted()
Domaha_request_action_unittest.cc332 if (action->Type() == OmahaRequestAction::StaticType()) { in ActionCompleted()
347 ObjectCollectorAction<OmahaResponse>::StaticType()) { in ActionCompleted()
/system/update_engine/common/
Dtest_utils.h195 static std::string StaticType() { return "ObjectFeederAction"; } in StaticType() function
196 std::string Type() const { return StaticType(); } in Type()
228 static std::string StaticType() { return "ObjectCollectorAction"; } in StaticType() function
229 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()
Ddownload_action.h70 static std::string StaticType() { return "DownloadAction"; } in StaticType() function
88 std::string Type() const override { return StaticType(); } in Type()
/system/update_engine/payload_consumer/
Dpostinstall_runner_action.h64 static std::string StaticType() { return "PostinstallRunnerAction"; } in StaticType() function
65 std::string Type() const override { return StaticType(); } in Type()
Dfilesystem_verifier_action.h84 static std::string StaticType() { return "FilesystemVerifierAction"; } in StaticType() function
85 std::string Type() const override { return StaticType(); } in Type()
Dinstall_plan.h206 static std::string StaticType() { return "InstallPlanAction"; } in StaticType() function
207 std::string Type() const override { return StaticType(); } in Type()
Dfilesystem_verifier_action_unittest.cc232 if (action->Type() == FilesystemVerifierAction::StaticType()) { in ActionCompleted()
238 ObjectCollectorAction<InstallPlan>::StaticType()) { in ActionCompleted()
375 if (action->Type() == FilesystemVerifierAction::StaticType()) { in ActionCompleted()
Dpostinstall_runner_action_unittest.cc72 if (action->Type() == PostinstallRunnerAction::StaticType()) { in ActionCompleted()
/system/update_engine/aosp/
Dcleanup_previous_update_action.h63 static std::string StaticType();
Dupdate_attempter_android.cc597 if (type == CleanupPreviousUpdateAction::StaticType() || in ActionCompleted()
598 (type == NoOpAction::StaticType() && in ActionCompleted()
606 if (type == PostinstallRunnerAction::StaticType()) { in ActionCompleted()
615 if (type == UpdateBootFlagsAction::StaticType()) { in ActionCompleted()
618 if (type == DownloadAction::StaticType()) { in ActionCompleted()
622 } else if (type == FilesystemVerifierAction::StaticType()) { in ActionCompleted()
Dcleanup_previous_update_action.cc98 return StaticType(); in Type()
101 std::string CleanupPreviousUpdateAction::StaticType() { in StaticType() function in chromeos_update_engine::CleanupPreviousUpdateAction