Home
last modified time | relevance | path

Searched refs:AbstractAction (Results 1 – 16 of 16) sorted by relevance

/system/update_engine/common/
Daction_processor.h39 class AbstractAction; variable
75 virtual void EnqueueAction(AbstractAction* action);
84 AbstractAction* current_action() const { in current_action()
89 void ActionComplete(AbstractAction* actionptr, ErrorCode code);
99 std::deque<AbstractAction*> actions_;
102 AbstractAction* current_action_{nullptr};
138 AbstractAction* action, in ActionCompleted()
Daction.h83 class AbstractAction {
85 AbstractAction() : processor_(nullptr) {} in AbstractAction() function
86 virtual ~AbstractAction() = default;
154 class Action : public AbstractAction {
Daction_processor.cc37 void ActionProcessor::EnqueueAction(AbstractAction* action) { in EnqueueAction()
107 void ActionProcessor::ActionComplete(AbstractAction* actionptr, in ActionComplete()
Dmock_action_processor.h29 MOCK_METHOD1(EnqueueAction, void(AbstractAction* action));
Dutils.h369 AbstractAction* action) in ScopedActionCompleter()
386 AbstractAction* action_;
Daction_processor_unittest.cc79 AbstractAction* action, in ActionCompleted()
/system/update_engine/
Dupdate_attempter.cc104 ErrorCode GetErrorCodeForAction(AbstractAction* action, in GetErrorCodeForAction()
590 actions_.push_back(shared_ptr<AbstractAction>(postinstall_runner_action)); in UpdateAttempter()
655 actions_.push_back(shared_ptr<AbstractAction>(update_check_action)); in UpdateAttempter()
656 actions_.push_back(shared_ptr<AbstractAction>(response_handler_action)); in UpdateAttempter()
657 actions_.push_back(shared_ptr<AbstractAction>(download_started_action)); in UpdateAttempter()
658 actions_.push_back(shared_ptr<AbstractAction>(download_action)); in UpdateAttempter()
659 actions_.push_back(shared_ptr<AbstractAction>(download_finished_action)); in UpdateAttempter()
660 actions_.push_back(shared_ptr<AbstractAction>(filesystem_verifier_action)); in UpdateAttempter()
672 actions_.push_back(shared_ptr<AbstractAction>(update_complete_action)); in UpdateAttempter()
675 for (const shared_ptr<AbstractAction>& action : actions_) { in UpdateAttempter()
[all …]
Dupdate_attempter_android.cc325 AbstractAction* action, in ActionCompleted()
474 actions_.push_back(shared_ptr<AbstractAction>(install_plan_action)); in BuildUpdateActions()
475 actions_.push_back(shared_ptr<AbstractAction>(download_action)); in BuildUpdateActions()
476 actions_.push_back(shared_ptr<AbstractAction>(filesystem_verifier_action)); in BuildUpdateActions()
477 actions_.push_back(shared_ptr<AbstractAction>(postinstall_runner_action)); in BuildUpdateActions()
487 for (const shared_ptr<AbstractAction>& action : actions_) in BuildUpdateActions()
Dupdate_attempter_android.h76 AbstractAction* action,
139 std::vector<std::shared_ptr<AbstractAction>> actions_;
Dupdate_attempter.h100 AbstractAction* action,
297 void CreatePendingErrorEvent(AbstractAction* action, ErrorCode code);
410 std::vector<std::shared_ptr<AbstractAction>> actions_;
Dupdate_attempter_unittest.cc272 extern ErrorCode GetErrorCodeForAction(AbstractAction* action, in TEST_F()
360 EnqueueAction(Property(&AbstractAction::Type, in TEST_F()
407 EnqueueAction(Property(&AbstractAction::Type, in UpdateTestStart()
428 AbstractAction* action_3 = attempter_.actions_[3].get(); in UpdateTestVerify()
478 EnqueueAction(Property(&AbstractAction::Type, in RollbackTestStart()
501 AbstractAction* action_0 = attempter_.actions_[0].get(); in RollbackTestVerify()
543 EnqueueAction(Property(&AbstractAction::Type, in PingOmahaTestStart()
Domaha_response_handler_action_unittest.cc71 AbstractAction* action, in ActionCompleted()
Domaha_request_action_unittest.cc251 AbstractAction* action, in ActionCompleted()
/system/update_engine/payload_consumer/
Dfilesystem_verifier_action_unittest.cc88 AbstractAction* action, in ActionCompleted()
226 AbstractAction* action, in ActionCompleted()
Dpostinstall_runner_action_unittest.cc65 AbstractAction* action, in ActionCompleted()
Ddownload_action_unittest.cc88 AbstractAction* action, in ActionCompleted()