HomeSort by relevance Sort by last modified time
    Searched refs:current_command_ (Results 1 - 5 of 5) sorted by null

  /system/update_engine/payload_consumer/
postinstall_runner_action.cc 178 current_command_ = Subprocess::Get().ExecFlags(
185 CHECK_GE(current_command_, 0);
187 if (!current_command_) {
194 Subprocess::Get().GetPipeFd(current_command_, kPostinstallStatusFd);
284 current_command_ = 0;
348 if (!current_command_)
350 if (kill(current_command_, SIGSTOP) != 0) {
351 PLOG(ERROR) << "Couldn't pause child process " << current_command_;
356 if (!current_command_)
358 if (kill(current_command_, SIGCONT) != 0)
    [all...]
postinstall_runner_action.h 135 pid_t current_command_{0};
postinstall_runner_action_unittest.cc 118 if (!postinstall_action_ || !postinstall_action_->current_command_ ||
120 "/proc/%d/fd/0", postinstall_action_->current_command_)) !=
141 if (!postinstall_action_ || !postinstall_action_->current_command_) {
  /system/core/init/
action.cpp 300 ActionManager::ActionManager() : current_command_(0) {
367 if (current_command_ == 0) {
372 action->ExecuteOneCommand(current_command_);
377 ++current_command_;
378 if (current_command_ == action->NumCommands()) {
380 current_command_ = 0;
action.h 114 std::size_t current_command_; member in class:ActionManager

Completed in 3325 milliseconds