Searched refs:AbstractAction (Results 1 – 16 of 16) sorted by relevance
/system/update_engine/common/ |
D | action_processor.h | 39 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()
|
D | action.h | 83 class AbstractAction { 85 AbstractAction() : processor_(nullptr) {} in AbstractAction() function 86 virtual ~AbstractAction() = default; 154 class Action : public AbstractAction {
|
D | action_processor.cc | 37 void ActionProcessor::EnqueueAction(AbstractAction* action) { in EnqueueAction() 107 void ActionProcessor::ActionComplete(AbstractAction* actionptr, in ActionComplete()
|
D | mock_action_processor.h | 29 MOCK_METHOD1(EnqueueAction, void(AbstractAction* action));
|
D | utils.h | 369 AbstractAction* action) in ScopedActionCompleter() 386 AbstractAction* action_;
|
D | action_processor_unittest.cc | 79 AbstractAction* action, in ActionCompleted()
|
/system/update_engine/ |
D | update_attempter.cc | 104 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 …]
|
D | update_attempter_android.cc | 325 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()
|
D | update_attempter_android.h | 76 AbstractAction* action, 139 std::vector<std::shared_ptr<AbstractAction>> actions_;
|
D | update_attempter.h | 100 AbstractAction* action, 297 void CreatePendingErrorEvent(AbstractAction* action, ErrorCode code); 410 std::vector<std::shared_ptr<AbstractAction>> actions_;
|
D | update_attempter_unittest.cc | 272 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()
|
D | omaha_response_handler_action_unittest.cc | 71 AbstractAction* action, in ActionCompleted()
|
D | omaha_request_action_unittest.cc | 251 AbstractAction* action, in ActionCompleted()
|
/system/update_engine/payload_consumer/ |
D | filesystem_verifier_action_unittest.cc | 88 AbstractAction* action, in ActionCompleted() 226 AbstractAction* action, in ActionCompleted()
|
D | postinstall_runner_action_unittest.cc | 65 AbstractAction* action, in ActionCompleted()
|
D | download_action_unittest.cc | 88 AbstractAction* action, in ActionCompleted()
|