HomeSort by: relevance | last modified time | path
    Searched defs:progress (Results 1 - 25 of 53) sorted by relevancy

1 2 3

  /src/usr.sbin/makefs/
v7fs_makefs.h 37 int progress; member in struct:__anon8504
38 v7fs_daddr_t npuredatablk; /* for progress bar */
46 void progress(const struct progress_arg *);
v7fs.c 59 #include "progress.h"
71 { 'P', "progress", &v7fs_opts->progress, OPT_INT32, false, true,
72 "Progress bar" },
103 if ((progress_bar_enable = v7fs_opts->progress)) {
106 progress(&(struct progress_arg){ .cdev = image });
168 progress(const struct progress_arg *p) function
171 static struct progress_arg Progress;
179 Progress = *p;
186 if (!Progress.tick
    [all...]
  /src/sbin/fsck_v7fs/
main.c 50 #include "progress.h"
81 printf("write backing...(no progress report)"); fflush(stdout);
194 progress(const struct progress_arg *p) function
196 static struct progress_arg Progress;
201 if (Progress.tick) {
204 Progress = *p;
213 if (!Progress.tick)
215 if (++Progress.cnt > Progress.tick) {
216 Progress.cnt = 0
    [all...]
  /src/sbin/newfs_v7fs/
newfs_v7fs.c 53 #include "progress.h"
126 progress(&(struct progress_arg){ .cdev = device });
209 progress(const struct progress_arg *p) function
211 static struct progress_arg Progress;
219 Progress = *p;
226 if (!Progress.tick)
228 if (++Progress.cnt > Progress.tick) {
229 Progress.cnt = 0;
230 Progress.total++
    [all...]
  /src/usr.bin/ftp/
progressbar.h 48 GLOBAL int progress; /* display transfer progress bar */ variable
54 GLOBAL char *prefix; /* Text written left of progress bar */
  /src/external/gpl2/lvm2/dist/tools/
polldaemon.c 107 progress_t progress; local
122 progress = parms->poll_fns->poll_progress(cmd, lv, name, parms);
123 if (progress == PROGRESS_CHECK_FAILED)
126 if (progress == PROGRESS_UNFINISHED) {
137 /* Finished? Or progress to next segment? */
138 if (progress == PROGRESS_FINISHED_ALL) {
253 log_verbose("Checking progress every %u seconds",
  /src/bin/mv/
mv.c 78 progress(int sig __unused) function
123 (void)signal(SIGINFO, progress);
  /src/sys/arch/hpc/stand/hpcboot/
hpcmenu.cpp 353 // Progress bar
355 HpcMenuInterface::progress(const char *msg) function in class:HpcMenuInterface
358 _root->progress(msg);
  /src/sys/arch/hpc/stand/hpcboot/menu/
rootwindow.cpp 244 // Progress bar
368 RootWindow::progress(const char *msg) function in class:RootWindow
372 Console::Instance()->print(TEXT("[progress] %S\n"), msg);
425 // PROGRESS BAR
  /src/sys/arch/hpcmips/stand/pbsdboot/
elf.c 78 int progress = 0; local
116 if (progress != tmp_progress) {
117 progress = tmp_progress;
118 if (CheckCancel(progress)) {
134 int progress; local
188 progress = 0;
  /src/external/gpl3/gdb/dist/gdb/guile/
scm-iterator.c 27 2) an object to record the progress of the iteration,
36 (let ((l (iterator-progress iter)))
40 (set-iterator-progress! iter (cdr l))
67 /* An arbitrary object describing the progress of the iteration.
68 This is used by next_x to track progress. */
69 SCM progress; member in struct:iterator_smob
100 return i_smob->progress;
104 itscm_set_iterator_smob_progress_x (iterator_smob *i_smob, SCM progress)
106 i_smob->progress = progress;
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/guile/
scm-iterator.c 27 2) an object to record the progress of the iteration,
36 (let ((l (iterator-progress iter)))
40 (set-iterator-progress! iter (cdr l))
67 /* An arbitrary object describing the progress of the iteration.
68 This is used by next_x to track progress. */
69 SCM progress; member in struct:iterator_smob
100 return i_smob->progress;
104 itscm_set_iterator_smob_progress_x (iterator_smob *i_smob, SCM progress)
106 i_smob->progress = progress;
    [all...]
  /src/bin/cp/
cp.c 99 progress(int sig __unused) function
221 (void)signal(SIGINFO, progress);
utils.c 88 progress(const struct finfo *fi, off_t written) function
230 progress(&fi, ptotal);
250 progress(&fi, ptotal);
  /src/bin/dd/
dd.c 92 uint64_t progress = 0; /* display sign of life */ variable
611 if (progress && (st.out_full + st.out_part) % progress == 0)
  /src/bin/rm/
rm.c 69 static void progress(int);
141 (void)signal(SIGINFO, progress);
607 progress(int sig __unused) function
  /src/sys/dev/sbus/
isp_sbus.c 344 int reqrs, rsprs, i, progress; local
393 progress = 0;
399 progress++;
404 progress++;
409 progress++;
414 progress++;
422 progress++;
427 progress++;
432 progress++;
444 if (progress >= 8)
    [all...]
  /src/external/bsd/pkg_install/dist/delete/
pkg_delete.c 237 * The loop has to continue as long as progress is made. This can happen
242 * If no progress is made, the remaining packages are moved to sorted_pkgs
302 int progress; member in struct:find_leaves_data
341 data->progress = 1;
358 data.progress = 0;
360 } while (data.progress);
  /src/external/bsd/wpa/dist/src/utils/
browser.c 24 int progress; member in struct:browser_context
48 if (ctx->progress == 100) {
55 snprintf(buf, sizeof(buf), "[%d%%] %s", ctx->progress,
95 ctx->progress = 100 * webkit_web_view_get_estimated_load_progress(view);
96 wpa_printf(MSG_DEBUG, "BROWSER:%s progress=%d", __func__,
97 ctx->progress);
200 ctx->progress = 100 * webkit_web_view_get_progress(view);
201 wpa_printf(MSG_DEBUG, "BROWSER:%s progress=%d", __func__,
202 ctx->progress);
330 g_signal_connect(G_OBJECT(view), "notify::estimated-load-progress",
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
cli-out.c 266 /* Initialize a progress update to be displayed with
278 /* Print a progress update. MSG is a string to be printed on the line above
279 the progress bar. TOTAL is the size of the download whose progress is
281 is between 0.0 and 1.0, a progress bar is displayed indicating the percentage
282 of completion and the download size. If HOWMUCH is negative, a progress
330 std::string progress = string_printf (" %3.f%% (%.2f %s)", local
333 int width = chars_per_line - progress.size () - 4;
344 display += "]" + progress;
354 /* Advance the progress indicator at a rate of 1 tick ever
    [all...]
debuginfod-support.c 116 ui_out::progress_update progress; member in struct:user_data
119 /* Convert SIZE into a unit suitable for use with progress updates.
166 /* Print progress update. Include the transfer size if available. */
179 data->progress.update_progress (msg, unit, howmuch, d_total);
186 data->progress.update_progress (msg);
  /src/external/gpl3/gdb.old/dist/gdb/
cli-out.c 265 /* Initialize a progress update to be displayed with
277 /* Print a progress update. MSG is a string to be printed on the line above
278 the progress bar. TOTAL is the size of the download whose progress is
280 is between 0.0 and 1.0, a progress bar is displayed indicating the percentage
281 of completion and the download size. If HOWMUCH is negative, a progress
329 std::string progress = string_printf (" %3.f%% (%.2f %s)", local
332 int width = chars_per_line - progress.size () - 4;
343 display += "]" + progress;
353 /* Advance the progress indicator at a rate of 1 tick ever
    [all...]
debuginfod-support.c 116 ui_out::progress_update progress; member in struct:user_data
119 /* Convert SIZE into a unit suitable for use with progress updates.
166 /* Print progress update. Include the transfer size if available. */
179 data->progress.update_progress (msg, unit, howmuch, d_total);
186 data->progress.update_progress (msg);
  /src/sys/dev/dmover/
dmover_io.c 401 int error = 0, progress = 0; local
418 error = progress ? 0 : EWOULDBLOCK;
455 progress = 1;
523 int error = 0, progress = 0; local
538 error = progress ? 0 : EWOULDBLOCK;
552 progress = 1;
  /src/usr.sbin/mmcformat/
mmcformat.c 67 print_eta(uint32_t progress, uint64_t now, uint64_t start_time)
72 if (progress == 0) {
77 ttot_est = (tbusy * 0x10000) / progress;
93 uint32_t progress; local
109 progress = 0;
110 while (progress < 0x10000) {
119 * progress is 4 too
124 /* drive not ready : operation/format in progress */
126 progress = sense.sense_key;
129 progress = 0x10000
    [all...]

Completed in 40 milliseconds

1 2 3