Searched refs:current_command_ (Results 1 – 5 of 5) sorted by relevance
188 current_command_ = Subprocess::Get().ExecFlags( in PerformPartitionPostinstall()195 CHECK_GE(current_command_, 0); in PerformPartitionPostinstall()197 if (!current_command_) { in PerformPartitionPostinstall()204 Subprocess::Get().GetPipeFd(current_command_, kPostinstallStatusFd); in PerformPartitionPostinstall()295 current_command_ = 0; in CompletePartitionPostinstall()359 if (!current_command_) in SuspendAction()361 if (kill(current_command_, SIGSTOP) != 0) { in SuspendAction()362 PLOG(ERROR) << "Couldn't pause child process " << current_command_; in SuspendAction()369 if (!current_command_) in ResumeAction()371 if (kill(current_command_, SIGCONT) != 0) { in ResumeAction()[all …]
111 if (!postinstall_action_ || !postinstall_action_->current_command_ || in SuspendRunningAction()113 "/proc/%d/fd/0", postinstall_action_->current_command_)) != in SuspendRunningAction()134 if (!postinstall_action_ || !postinstall_action_->current_command_) { in CancelWhenStarted()
135 pid_t current_command_{0};
239 ActionManager::ActionManager() : current_command_(0) { in ActionManager()295 if (current_command_ == 0) { in ExecuteOneCommand()301 action->ExecuteOneCommand(current_command_); in ExecuteOneCommand()306 ++current_command_; in ExecuteOneCommand()307 if (current_command_ == action->NumCommands()) { in ExecuteOneCommand()309 current_command_ = 0; in ExecuteOneCommand()333 current_command_ = 0; in ClearQueue()
116 std::size_t current_command_; variable