/system/update_engine/ |
D | update_boot_flags_action.h | 35 static std::string StaticType() { return "UpdateBootFlagsAction"; } in StaticType() function 36 std::string Type() const override { return StaticType(); } in Type()
|
/system/update_engine/cros/ |
D | omaha_response_handler_action.h | 59 static std::string StaticType() { return "OmahaResponseHandlerAction"; } in StaticType() function 60 std::string Type() const override { return StaticType(); } in Type()
|
D | download_action_chromeos.h | 46 static std::string StaticType() { return "DownloadActionChromeos"; } in StaticType() function 64 std::string Type() const override { return StaticType(); } in Type()
|
D | omaha_request_action.h | 117 static std::string StaticType() { return "OmahaRequestAction"; } in StaticType() function 118 std::string Type() const override { return StaticType(); } in Type()
|
D | update_attempter.cc | 117 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()
|
D | update_attempter_unittest.cc | 425 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 …]
|
D | download_action_chromeos_unittest.cc | 89 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()
|
D | omaha_response_handler_action_unittest.cc | 59 if (action->Type() == OmahaResponseHandlerAction::StaticType()) { in ActionCompleted() 67 ObjectCollectorAction<InstallPlan>::StaticType()) { in ActionCompleted()
|
D | omaha_request_action_unittest.cc | 332 if (action->Type() == OmahaRequestAction::StaticType()) { in ActionCompleted() 347 ObjectCollectorAction<OmahaResponse>::StaticType()) { in ActionCompleted()
|
/system/update_engine/common/ |
D | test_utils.h | 195 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()
|
D | action.h | 232 static std::string StaticType() { return "NoOpAction"; } in StaticType() function 233 std::string Type() const override { return StaticType(); } in Type()
|
D | download_action.h | 70 static std::string StaticType() { return "DownloadAction"; } in StaticType() function 88 std::string Type() const override { return StaticType(); } in Type()
|
/system/update_engine/payload_consumer/ |
D | postinstall_runner_action.h | 64 static std::string StaticType() { return "PostinstallRunnerAction"; } in StaticType() function 65 std::string Type() const override { return StaticType(); } in Type()
|
D | filesystem_verifier_action.h | 84 static std::string StaticType() { return "FilesystemVerifierAction"; } in StaticType() function 85 std::string Type() const override { return StaticType(); } in Type()
|
D | install_plan.h | 206 static std::string StaticType() { return "InstallPlanAction"; } in StaticType() function 207 std::string Type() const override { return StaticType(); } in Type()
|
D | filesystem_verifier_action_unittest.cc | 232 if (action->Type() == FilesystemVerifierAction::StaticType()) { in ActionCompleted() 238 ObjectCollectorAction<InstallPlan>::StaticType()) { in ActionCompleted() 375 if (action->Type() == FilesystemVerifierAction::StaticType()) { in ActionCompleted()
|
D | postinstall_runner_action_unittest.cc | 72 if (action->Type() == PostinstallRunnerAction::StaticType()) { in ActionCompleted()
|
/system/update_engine/aosp/ |
D | cleanup_previous_update_action.h | 63 static std::string StaticType();
|
D | update_attempter_android.cc | 597 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()
|
D | cleanup_previous_update_action.cc | 98 return StaticType(); in Type() 101 std::string CleanupPreviousUpdateAction::StaticType() { in StaticType() function in chromeos_update_engine::CleanupPreviousUpdateAction
|