Searched refs:progress (Results 1 - 25 of 65) sorted by relevance

123

/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_initialize/
H A Dzpool_initialize_attach_detach_add_remove.ksh48 progress="$(initialize_progress $TESTPOOL $DISK1)"
49 [[ -z "$progress" ]] && log_fail "Initializing did not start"
53 [[ "$progress" -le "$new_progress" ]] || \
54 log_fail "Lost initializing progress on demotion to child vdev"
55 progress="$new_progress"
59 [[ "$progress" -le "$new_progress" ]] || \
60 log_fail "Lost initializing progress on promotion to top vdev"
61 progress="$new_progress"
H A Dzpool_initialize_offline_export_import_online.ksh47 progress="$(initialize_progress $TESTPOOL $DISK1)"
48 [[ -z "$progress" ]] && log_fail "Initializing did not start"
56 [[ "$new_progress" -ge "$progress" ]] || \
57 log_fail "Initializing lost progress after import"
62 [[ "$new_progress" -ge "$progress" ]] || \
63 log_fail "Initializing lost progress after online"
H A Dzpool_initialize_suspend_resume.ksh36 # 3. Wait 3 seconds, then suspend initializing and verify that the progress
38 # 4. Wait 5 seconds and ensure initializing progress doesn't advance.
39 # 5. Restart initializing and verify that the progress doesn't regress.
53 progress="$(initialize_progress $TESTPOOL $DISK1)"
56 [[ "$progress" -eq "$(initialize_progress $TESTPOOL $DISK1)" ]] || \
57 log_fail "Initializing progress advanced while suspended"
60 [[ "$progress" -le "$(initialize_progress $TESTPOOL $DISK1)" ]] ||
61 log_fail "Initializing progress regressed after resuming"
H A Dzpool_initialize_import_export.ksh38 # 5. Verify that initializing resumes and progress does not regress.
41 # 8. Verify that progress does not regress but initializing is still suspended.
51 progress="$(initialize_progress $TESTPOOL $DISK1)"
52 [[ -z "$progress" ]] && log_fail "Initializing did not start"
59 [[ "$progress" -le "$new_progress" ]] || \
60 log_fail "Initializing lost progress after import"
74 log_fail "Initializing lost progress after import"
H A Dzpool_initialize_online_offline.ksh38 # 5. Verify that initializing resumes and progress does not regress.
51 progress="$(initialize_progress $TESTPOOL $DISK1)"
52 [[ -z "$progress" ]] && log_fail "Initializing did not start"
59 [[ "$progress" -le "$new_progress" ]] || \
60 log_fail "Initializing lost progress after onlining"
H A Dzpool_initialize_fault_export_import_online.ksh40 progress="$(initialize_progress $TESTPOOL $DISK1)"
41 [[ -z "$progress" ]] && log_fail "Initializing did not start"
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_trim/
H A Dzpool_trim_attach_detach_add_remove.ksh44 progress="$(trim_progress $TESTPOOL $DISK1)"
45 [[ -z "$progress" ]] && log_fail "Trim did not start"
49 [[ "$progress" -le "$new_progress" ]] || \
50 log_fail "Lost trimming progress on demotion to child vdev"
51 progress="$new_progress"
55 [[ "$progress" -le "$new_progress" ]] || \
56 log_fail "Lost trimming progress on promotion to top vdev"
57 progress="$new_progress"
H A Dzpool_trim_rate.ksh62 progress=$(trim_progress $TESTPOOL $LARGEFILE)
65 log_must within_tolerance 10 $progress 5
70 progress=$(trim_progress $TESTPOOL $LARGEFILE)
73 log_must within_tolerance 20 $progress 10
78 progress=$(trim_progress $TESTPOOL $LARGEFILE)
81 log_must within_tolerance 50 $progress 15
86 progress=$(trim_progress $TESTPOOL $LARGEFILE)
88 log_must within_tolerance 100 $progress 0
H A Dzpool_trim_offline_export_import_online.ksh43 progress="$(trim_progress $TESTPOOL $DISK1)"
44 [[ -z "$progress" ]] && log_fail "Trimming did not start"
52 [[ "$new_progress" -ge "$progress" ]] || \
53 log_fail "Trimming lost progress after import"
58 [[ "$new_progress" -ge "$progress" ]] || \
59 log_fail "Trimming lost progress after online"
H A Dzpool_trim_suspend_resume.ksh32 # 3. Wait 3 seconds, then suspend trimming and verify that the progress
34 # 4. Wait 3 seconds and ensure trimming progress doesn't advance.
35 # 5. Restart trimming and verify that the progress doesn't regress.
64 progress="$(trim_progress $TESTPOOL $LARGEFILE)"
67 [[ "$progress" -eq "$(trim_progress $TESTPOOL $LARGEFILE)" ]] || \
68 log_fail "Trimming progress advanced while suspended"
71 [[ "$progress" -le "$(trim_progress $TESTPOOL $LARGEFILE)" ]] ||
72 log_fail "Trimming progress regressed after resuming"
H A Dzpool_trim_multiple.ksh46 log_fail "Trimming progress wasn't reset"
55 progress="$(trim_progress $TESTPOOL $DISK1)"
57 [[ "$progress" -le "$(trim_progress $TESTPOOL $DISK1)" ]] ||
58 log_fail "Trimming progress regressed"
H A Dzpool_trim_online_offline.ksh34 # 5. Verify that trimming resumes and progress does not regress.
49 progress="$(trim_progress $TESTPOOL $DISK1)"
50 [[ -z "$progress" ]] && log_fail "Trimming did not start"
57 [[ "$progress" -le "$new_progress" ]] || \
58 log_fail "Trimming lost progress after onlining"
H A Dzpool_trim_fault_export_import_online.ksh41 progress="$(trim_progress $TESTPOOL $DISK1)"
42 [[ -z "$progress" ]] && log_fail "Trimming did not start"
H A Dzpool_trim_import_export.ksh34 # 5. Verify that trimming resumes and progress does not regress.
37 # 8. Verify that progress does not regress but trimming is still suspended.
60 progress="$(trim_progress $TESTPOOL $LARGEFILE)"
61 [[ -z "$progress" ]] && log_fail "Trimming did not start"
69 [[ "$progress" -le "$new_progress" ]] || \
70 log_fail "Trimming lost progress after import"
84 log_fail "Trimming lost progress after import"
/freebsd-13-stable/usr.sbin/bsdinstall/distfetch/
H A Ddistfetch.c111 int progress = 0; local
146 last_progress = progress;
148 progress = (i*100)/nfiles;
185 last_progress = progress;
186 progress = (current_bytes*100)/total_bytes;
195 if (progress > last_progress)
198 progress, nfiles,
/freebsd-13-stable/bin/dd/
H A Dextern.h48 void progress(void);
/freebsd-13-stable/usr.sbin/mfiutil/
H A Dmfi_volume.c455 warnx("volume progress: %s", ac > 2 ? "extra arguments" :
484 if (info.progress.active & MFI_LD_PROGRESS_CC)
485 mfi_display_progress("Consistency Check", &info.progress.cc);
486 if (info.progress.active & MFI_LD_PROGRESS_BGI)
487 mfi_display_progress("Background Init", &info.progress.bgi);
488 if (info.progress.active & MFI_LD_PROGRESS_FGI)
489 mfi_display_progress("Foreground Init", &info.progress.fgi);
490 if (info.progress.active & MFI_LD_PROGRESS_RECON)
491 mfi_display_progress("Reconstruction", &info.progress.recon);
492 if ((info.progress
[all...]
/freebsd-13-stable/contrib/tnftp/src/
H A Dprogressbar.h49 GLOBAL int progress; /* display transfer progress bar */ variable
55 GLOBAL char *prefix; /* Text written left of progress bar */
/freebsd-13-stable/sbin/camcontrol/
H A DMakefile8 SRCS+= attrib.c epc.c fwdownload.c modeedit.c persist.c progress.c timestamp.c zone.c
/freebsd-13-stable/sys/mips/mips/
H A Dminidump_machdep.c61 static uint64_t counter, progress, dumpsize; variable
100 report_progress(uint64_t progress, uint64_t dumpsize) argument
104 sofar = 100 - ((progress * 100) / dumpsize);
134 progress -= len;
137 report_progress(progress, dumpsize);
221 progress = dumpsize;
/freebsd-13-stable/usr.bin/dpv/
H A Ddpv.c156 int progress; local
185 progress = (file->read * 100 / (file->length > 0 ?
189 if (no_overrun && progress == 100 && file->read < file->length)
190 progress--;
192 return (progress);
201 int progress; local
233 progress = (file->read * 100 / file->length);
236 if (no_overrun && progress == 100 && file->read < file->length)
237 progress--;
239 return (progress);
[all...]
/freebsd-13-stable/contrib/wpa/src/utils/
H A Dbrowser.c19 int progress; member in struct:browser_context
40 if (ctx->progress == 100) {
47 snprintf(buf, sizeof(buf), "[%d%%] %s", ctx->progress,
56 ctx->progress = 100 * webkit_web_view_get_progress(view);
57 wpa_printf(MSG_DEBUG, "BROWSER:%s progress=%d", __func__,
58 ctx->progress);
180 g_signal_connect(G_OBJECT(view), "notify::progress",
/freebsd-13-stable/sys/riscv/riscv/
H A Dminidump_machdep.c63 static size_t counter, progress, dumpsize; variable
85 report_progress(size_t progress, size_t dumpsize) argument
89 sofar = 100 - ((progress * 100) / dumpsize);
176 progress -= len;
178 report_progress(progress, dumpsize);
272 progress = dumpsize;
/freebsd-13-stable/sys/arm64/arm64/
H A Dminidump_machdep.c65 static size_t counter, progress, dumpsize; variable
115 report_progress(size_t progress, size_t dumpsize) argument
119 sofar = 100 - ((progress * 100) / dumpsize);
169 progress -= len;
171 report_progress(progress, dumpsize);
263 progress = dumpsize;
/freebsd-13-stable/sys/amd64/amd64/
H A Dminidump_machdep.c63 static size_t counter, progress, dumpsize, wdog_next; variable
117 report_progress(size_t progress, size_t dumpsize) argument
121 sofar = 100 - ((progress * 100) / dumpsize);
171 progress -= len;
173 report_progress(progress, dumpsize);
176 if (progress <= wdog_next) {
315 wdog_next = progress = dumpsize;

Completed in 270 milliseconds

123