HomeSort by relevance Sort by last modified time
    Searched defs:ActionProcessor (Results 1 - 2 of 2) sorted by null

  /system/update_engine/common/
action_processor.cc 30 ActionProcessor::~ActionProcessor() {
37 void ActionProcessor::EnqueueAction(AbstractAction* action) {
42 void ActionProcessor::StartProcessing() {
46 LOG(INFO) << "ActionProcessor: starting " << current_action_->Type();
52 void ActionProcessor::StopProcessing() {
58 LOG(INFO) << "ActionProcessor: aborted "
71 void ActionProcessor::SuspendProcessing() {
82 LOG(INFO) << "ActionProcessor: suspending " << current_action_->Type();
86 void ActionProcessor::ResumeProcessing()
    [all...]
action_processor.h 27 // The structure of these classes (Action, ActionPipe, ActionProcessor, etc.)
35 // An ActionProcessor keeps a queue of Actions and processes them in order.
42 class ActionProcessor {
44 ActionProcessor() = default;
46 virtual ~ActionProcessor();
66 // Resume the suspended processing. If the ActionProcessor is not suspended
115 DISALLOW_COPY_AND_ASSIGN(ActionProcessor);
119 // in an ActionProcessor. An instance of this class can be passed to an
120 // ActionProcessor to register itself.
125 // Called when all processing in an ActionProcessor has completed. A pointe
    [all...]

Completed in 50 milliseconds