Home
last modified time | relevance | path

Searched refs:StaticType (Results 1 – 12 of 12) 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/common/
Dtest_utils.h190 static std::string StaticType() { return "ObjectFeederAction"; } in StaticType() function
191 std::string Type() const { return StaticType(); } in Type()
223 static std::string StaticType() { return "ObjectCollectorAction"; } in StaticType() function
224 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.h69 static std::string StaticType() { return "DownloadAction"; } in StaticType() function
89 std::string Type() const override { return StaticType(); } in Type()
/system/update_engine/payload_consumer/
Dpostinstall_runner_action.h65 static std::string StaticType() { return "PostinstallRunnerAction"; } in StaticType() function
66 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.h239 static std::string StaticType() { return "InstallPlanAction"; } in StaticType() function
240 std::string Type() const override { return StaticType(); } in Type()
Dfilesystem_verifier_action_unittest.cc231 if (action->Type() == FilesystemVerifierAction::StaticType()) { in ActionCompleted()
237 ObjectCollectorAction<InstallPlan>::StaticType()) { in ActionCompleted()
374 if (action->Type() == FilesystemVerifierAction::StaticType()) { in ActionCompleted()
Dpostinstall_runner_action_unittest.cc71 if (action->Type() == PostinstallRunnerAction::StaticType()) { in ActionCompleted()
/system/update_engine/aosp/
Dcleanup_previous_update_action.h63 static std::string StaticType();
Dupdate_attempter_android.cc749 if (type == CleanupPreviousUpdateAction::StaticType() || in ActionCompleted()
750 (type == NoOpAction::StaticType() && in ActionCompleted()
758 if (type == PostinstallRunnerAction::StaticType()) { in ActionCompleted()
767 if (type == UpdateBootFlagsAction::StaticType()) { in ActionCompleted()
770 if (type == DownloadAction::StaticType()) { in ActionCompleted()
774 } else if (type == FilesystemVerifierAction::StaticType()) { in ActionCompleted()
Dcleanup_previous_update_action.cc102 return StaticType(); in Type()
105 std::string CleanupPreviousUpdateAction::StaticType() { in StaticType() function in chromeos_update_engine::CleanupPreviousUpdateAction