OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:postinstallrunneraction
(Results
1 - 8
of
8
) sorted by null
/system/update_engine/payload_consumer/
postinstall_runner_action.cc
54
void
PostinstallRunnerAction
::PerformAction() {
82
void
PostinstallRunnerAction
::PerformPartitionPostinstall() {
182
base::Bind(&
PostinstallRunnerAction
::CompletePartitionPostinstall,
205
base::Bind(&
PostinstallRunnerAction
::OnProgressFdReady,
209
void
PostinstallRunnerAction
::OnProgressFdReady() {
238
bool
PostinstallRunnerAction
::ProcessProgressLine(const string& line) {
248
void
PostinstallRunnerAction
::ReportProgress(double frac) {
265
void
PostinstallRunnerAction
::Cleanup() {
282
void
PostinstallRunnerAction
::CompletePartitionPostinstall(
320
void
PostinstallRunnerAction
::CompletePostinstall(ErrorCode error_code)
[
all
...]
postinstall_runner_action_unittest.cc
67
if (action->Type() ==
PostinstallRunnerAction
::StaticType()) {
80
: public
PostinstallRunnerAction
::DelegateInterface {
104
// Setup an action processor and run the
PostinstallRunnerAction
with a single
167
// The
PostinstallRunnerAction
delegate receiving the progress updates.
168
PostinstallRunnerAction
::DelegateInterface* setup_action_delegate_{nullptr};
171
PostinstallRunnerAction
* postinstall_action_{nullptr};
192
PostinstallRunnerAction
runner_action(&fake_boot_control_, &fake_hardware_);
218
PostinstallRunnerAction
action(&fake_boot_control_, &fake_hardware_);
postinstall_runner_action.h
38
class
PostinstallRunnerAction
: public InstallPlanAction {
40
PostinstallRunnerAction
(BootControlInterface* boot_control,
62
static std::string StaticType() { return "
PostinstallRunnerAction
"; }
145
DISALLOW_COPY_AND_ASSIGN(
PostinstallRunnerAction
);
/system/update_engine/
update_attempter_android.h
47
public
PostinstallRunnerAction
::DelegateInterface {
86
//
PostinstallRunnerAction
::DelegateInterface
update_attempter_android.cc
460
shared_ptr<
PostinstallRunnerAction
> postinstall_runner_action(
461
new
PostinstallRunnerAction
(boot_control_, hardware_));
update_attempter_unittest.cc
293
PostinstallRunnerAction
postinstall_runner_action(
385
PostinstallRunnerAction
::StaticType(),
392
PostinstallRunnerAction
::StaticType(),
[
all
...]
update_attempter.h
64
public
PostinstallRunnerAction
::DelegateInterface {
113
//
PostinstallRunnerAction
::DelegateInterface
update_attempter.cc
118
if (type ==
PostinstallRunnerAction
::StaticType())
587
shared_ptr<
PostinstallRunnerAction
> postinstall_runner_action(
588
new
PostinstallRunnerAction
(system_state_->boot_control(),
[
all
...]
Completed in 4094 milliseconds