Home
last modified time | relevance | path

Searched refs:progress (Results 1 – 10 of 10) sorted by relevance

/bootable/recovery/install/
Dsnapshot_utils.cpp42 double progress; in FinishPendingSnapshotMerges() local
43 sm->GetUpdateState(&progress); in FinishPendingSnapshotMerges()
44 ui->Print("Waiting for merge to complete: %.2f\n", progress); in FinishPendingSnapshotMerges()
Dpackage.cpp80 void Package::SetProgress(float progress) { in SetProgress() argument
82 set_progress_(progress); in SetProgress()
/bootable/recovery/install/include/install/
Dpackage.h57 void SetProgress(float progress) override;
Dverifier.h77 virtual void SetProgress(float progress) = 0;
/bootable/recovery/recovery_ui/
Dscreen_ui.cpp323 progress(0), in ScreenRecoveryUI()
469 float p = progressScopeStart + progress * progressScopeSize; in draw_foreground_locked()
799 if (p > progress) { in ProgressThreadLoop()
800 progress = p; in ProgressThreadLoop()
1014 progress = 0; in SetProgressType()
1025 progress = 0; in ShowProgress()
1033 if (progressBarType == DETERMINATE && fraction > progress) { in SetProgress()
1037 if ((int)(progress * scale) != (int)(fraction * scale)) { in SetProgress()
1038 progress = fraction; in SetProgress()
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/
DUpdateManager.java485 private void onStatusUpdate(int status, float progress) { in onStatusUpdate() argument
489 progress)); in onStatusUpdate()
493 mProgress.set(progress); in onStatusUpdate()
/bootable/recovery/uncrypt/
Duncrypt.cpp336 int progress = static_cast<int>(100 * (double(pos) / double(sb.st_size))); in ProductBlockMap() local
337 if (progress > last_progress) { in ProductBlockMap()
338 last_progress = progress; in ProductBlockMap()
339 write_status_to_socket(progress, socket); in ProductBlockMap()
/bootable/recovery/updater_sample/
DREADME.md14 to select an update and apply it to the device. App shows installation progress,
145 Called whenever the value of `status` or `progress` changes. For
146 `progress` values changes, this method will be called only if it changes significantly.
147 At this time of writing this doc, delta for `progress` is `0.005`.
210 control buttons, progress bar and log viewer
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/ui/
DMainActivity.java309 private void onProgressUpdate(double progress) { in onProgressUpdate() argument
310 mProgressBar.setProgress((int) (100 * progress)); in onProgressUpdate()
/bootable/recovery/recovery_ui/include/recovery_ui/
Dscreen_ui.h370 float progressScopeStart, progressScopeSize, progress; variable