Searched refs:progress (Results 1 – 9 of 9) sorted by relevance
48 void SetProgress(float progress) override;
77 virtual void SetProgress(float progress) = 0;
485 private void onStatusUpdate(int status, float progress) { in onStatusUpdate() argument489 progress)); in onStatusUpdate()493 mProgress.set(progress); in onStatusUpdate()
322 progress(0), in ScreenRecoveryUI()466 float p = progressScopeStart + progress * progressScopeSize; in draw_foreground_locked()792 if (p > progress) { in ProgressThreadLoop()793 progress = p; in ProgressThreadLoop()979 progress = 0; in SetProgressType()990 progress = 0; in ShowProgress()998 if (progressBarType == DETERMINATE && fraction > progress) { in SetProgress()1002 if ((int)(progress * scale) != (int)(fraction * scale)) { in SetProgress()1003 progress = fraction; in SetProgress()
336 int progress = static_cast<int>(100 * (double(pos) / double(sb.st_size))); in ProductBlockMap() local337 if (progress > last_progress) { in ProductBlockMap()338 last_progress = progress; in ProductBlockMap()339 write_status_to_socket(progress, socket); in ProductBlockMap()
72 void Package::SetProgress(float progress) { in SetProgress() argument74 set_progress_(progress); in SetProgress()
14 to select an update and apply it to the device. App shows installation progress,145 Called whenever the value of `status` or `progress` changes. For146 `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`.208 control buttons, progress bar and log viewer
309 private void onProgressUpdate(double progress) { in onProgressUpdate() argument310 mProgressBar.setProgress((int) (100 * progress)); in onProgressUpdate()
367 float progressScopeStart, progressScopeSize, progress; variable