Home
last modified time | relevance | path

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

123456789

/freebsd-12.1/usr.sbin/bsdinstall/distfetch/
H A Ddistfetch.c111 int progress = 0; in fetch_files() local
146 last_progress = progress; in fetch_files()
148 progress = (i*100)/nfiles; in fetch_files()
185 last_progress = progress; in fetch_files()
186 progress = (current_bytes*100)/total_bytes; in fetch_files()
195 if (progress > last_progress) in fetch_files()
198 progress, nfiles, in fetch_files()
/freebsd-12.1/usr.sbin/mfiutil/
H A Dmfi_volume.c484 if (info.progress.active & MFI_LD_PROGRESS_CC) in volume_progress()
485 mfi_display_progress("Consistency Check", &info.progress.cc); in volume_progress()
486 if (info.progress.active & MFI_LD_PROGRESS_BGI) in volume_progress()
487 mfi_display_progress("Background Init", &info.progress.bgi); in volume_progress()
488 if (info.progress.active & MFI_LD_PROGRESS_FGI) in volume_progress()
489 mfi_display_progress("Foreground Init", &info.progress.fgi); in volume_progress()
490 if (info.progress.active & MFI_LD_PROGRESS_RECON) in volume_progress()
491 mfi_display_progress("Reconstruction", &info.progress.recon); in volume_progress()
492 if ((info.progress.active & (MFI_LD_PROGRESS_CC | MFI_LD_PROGRESS_BGI | in volume_progress()
500 MFI_COMMAND(volume, progress, volume_progress);
H A Dmfi_show.c715 if (linfo.progress.active & MFI_LD_PROGRESS_CC) { in show_progress()
718 &linfo.progress.cc); in show_progress()
721 if (linfo.progress.active & MFI_LD_PROGRESS_BGI) { in show_progress()
724 &linfo.progress.bgi); in show_progress()
727 if (linfo.progress.active & MFI_LD_PROGRESS_FGI) { in show_progress()
730 &linfo.progress.fgi); in show_progress()
733 if (linfo.progress.active & MFI_LD_PROGRESS_RECON) { in show_progress()
736 &linfo.progress.recon); in show_progress()
783 MFI_COMMAND(show, progress, show_progress);
H A Dmfi_cmd.c336 (float)prog->progress * 100 / 0xffff); in mfi_display_progress()
338 if (prog->progress != 0 && prog->elapsed_seconds > 10) { in mfi_display_progress()
341 prog->progress - prog->elapsed_seconds; in mfi_display_progress()
/freebsd-12.1/usr.bin/dpv/
H A Ddpv.c156 int progress; in operate_on_bytes() local
185 progress = (file->read * 100 / (file->length > 0 ? in operate_on_bytes()
189 if (no_overrun && progress == 100 && file->read < file->length) in operate_on_bytes()
190 progress--; in operate_on_bytes()
192 return (progress); in operate_on_bytes()
201 int progress; in operate_on_lines() local
233 progress = (file->read * 100 / file->length); in operate_on_lines()
236 if (no_overrun && progress == 100 && file->read < file->length) in operate_on_lines()
237 progress--; in operate_on_lines()
239 return (progress); in operate_on_lines()
/freebsd-12.1/sys/mips/mips/
H A Dminidump_machdep.c63 static uint64_t counter, progress, dumpsize; variable
126 report_progress(uint64_t progress, uint64_t dumpsize) in report_progress() argument
130 sofar = 100 - ((progress * 100) / dumpsize); in report_progress()
160 progress -= len; in write_buffer()
163 report_progress(progress, dumpsize); in write_buffer()
253 progress = dumpsize; in minidumpsys()
/freebsd-12.1/contrib/wpa/src/utils/
H A Dbrowser.c19 int progress; member
40 if (ctx->progress == 100) { in browser_update_title()
47 snprintf(buf, sizeof(buf), "[%d%%] %s", ctx->progress, in browser_update_title()
56 ctx->progress = 100 * webkit_web_view_get_progress(view); in view_cb_notify_progress()
58 ctx->progress); in view_cb_notify_progress()
/freebsd-12.1/sys/amd64/amd64/
H A Dminidump_machdep.c65 static size_t counter, progress, dumpsize, wdog_next; variable
120 report_progress(size_t progress, size_t dumpsize) in report_progress() argument
124 sofar = 100 - ((progress * 100) / dumpsize); in report_progress()
174 progress -= len; in blk_write()
176 report_progress(progress, dumpsize); in blk_write()
179 if (progress <= wdog_next) { in blk_write()
324 wdog_next = progress = dumpsize; in minidumpsys()
/freebsd-12.1/sys/riscv/riscv/
H A Dminidump_machdep.c66 static size_t counter, progress, dumpsize; variable
88 report_progress(size_t progress, size_t dumpsize) in report_progress() argument
92 sofar = 100 - ((progress * 100) / dumpsize); in report_progress()
179 progress -= len; in blk_write()
181 report_progress(progress, dumpsize); in blk_write()
282 progress = dumpsize; in minidumpsys()
/freebsd-12.1/sys/arm64/arm64/
H A Dminidump_machdep.c69 static size_t counter, progress, dumpsize; variable
121 report_progress(size_t progress, size_t dumpsize) in report_progress() argument
125 sofar = 100 - ((progress * 100) / dumpsize); in report_progress()
175 progress -= len; in blk_write()
177 report_progress(progress, dumpsize); in blk_write()
275 progress = dumpsize; in minidumpsys()
/freebsd-12.1/sys/kern/
H A Duipc_mbuf.c1278 int progress = 0, length; in m_defrag() local
1307 while (progress < m0->m_pkthdr.len) { in m_defrag()
1308 length = m0->m_pkthdr.len - progress; in m_defrag()
1322 progress += length; in m_defrag()
1482 while (progress < m0->m_pkthdr.len) { in m_fragment()
1488 if (progress != 0) { in m_fragment()
1498 progress += fraglen; in m_fragment()
1522 int progress = 0; in m_uiotombuf() local
1560 progress += length; in m_uiotombuf()
1576 int progress = 0; in m_mbuftouio() local
[all …]
/freebsd-12.1/sys/arm/arm/
H A Dminidump_machdep.c66 static uint64_t counter, progress; variable
133 progress -= len; in blk_write()
135 printf(" %lld", PG2MB(progress >> PAGE_SHIFT)); in blk_write()
230 progress = dumpsize; in minidumpsys()
/freebsd-12.1/contrib/libarchive/tar/
H A Dwrite.c108 struct archive_entry *, int64_t progress);
738 int64_t offset, progress = 0; in copy_file_data_block() local
746 report_write(bsdtar, a, entry, progress); in copy_file_data_block()
748 if (offset > progress) { in copy_file_data_block()
749 int64_t sparse = offset - progress; in copy_file_data_block()
779 progress += bytes_written; in copy_file_data_block()
798 progress += bytes_written; in copy_file_data_block()
1003 struct archive_entry *entry, int64_t progress) in report_write() argument
1024 tar_i64toa(progress)); in report_write()
/freebsd-12.1/sys/i386/i386/
H A Dminidump_machdep.c63 static uint64_t counter, progress; variable
129 progress -= len; in blk_write()
131 printf(" %lld", PG2MB(progress >> PAGE_SHIFT)); in blk_write()
240 progress = dumpsize; in minidumpsys()
/freebsd-12.1/contrib/tnftp/src/
H A Dprogressbar.c197 if (progress) {
199 if (quit_time > 0 || progress) {
210 if (!progress)
322 if (!verbose && !progress && !siginfo)
H A Dftp.c681 oprogress = progress; in sendrequest()
708 progress = 0; in sendrequest()
717 progress = 0; in sendrequest()
784 hash_interval = (hash && (!progress || filesize < 0)) ? mark : 0; in sendrequest()
883 progress = oprogress; in sendrequest()
918 oprogress = progress; in recvrequest()
1011 progress = 0; in recvrequest()
1020 progress = 0; in recvrequest()
1033 progress = 0; in recvrequest()
1044 hash_interval = (hash && (!progress || filesize < 0)) ? mark : 0; in recvrequest()
[all …]
H A Dmain.c175 progress = 0; in main()
269 progress = 1; /* progress bar on if fg */ in main()
409 progress = verbose = 1; in main()
413 progress = verbose = 0; in main()
H A Dprogressbar.h49 GLOBAL int progress; /* display transfer progress bar */ variable
/freebsd-12.1/tools/KSE/ksetest/
H A Dkse_threads_test.c79 static int progress = 0; variable
440 if ((p == aa) && (progress > 0)) { in uts()
441 --progress; in uts()
452 p->tm_context.uc_mcontext.mc_eip, progress); in uts()
/freebsd-12.1/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_sendrecv.c1307 if (sdd->progress) { in dump_snapshot()
1324 if (sdd->progress) { in dump_snapshot()
1484 progress = B_TRUE; in dump_filesystems()
1490 assert(progress); in dump_filesystems()
1896 sdd.progress = flags->progress; in zfs_send()
2545 progress = B_TRUE; in recv_incremental_replication()
2591 progress = B_TRUE; in recv_incremental_replication()
2631 progress = B_TRUE; in recv_incremental_replication()
2648 progress = B_TRUE; in recv_incremental_replication()
2684 progress = B_TRUE; in recv_incremental_replication()
[all …]
/freebsd-12.1/sbin/camcontrol/
H A Dfwdownload.c779 progress_t progress; in fw_download_img() local
812 progress_init(&progress, imgname, size = img_size); in fw_download_img()
819 progress_update(&progress, size - img_size); in fw_download_img()
822 progress_draw(&progress); in fw_download_img()
920 progress_complete(&progress, size - img_size); in fw_download_img()
H A DMakefile9 SRCS+= attrib.c epc.c fwdownload.c modeedit.c persist.c progress.c timestamp.c zone.c
/freebsd-12.1/release/picobsd/tinyware/help/
H A DREADME3 This is work in progress. Eventually I'll prepare the help system for newbies,
/freebsd-12.1/tools/bsdbox/
H A DREADME9 It's a work in progress.
/freebsd-12.1/bin/dd/
H A Dextern.h48 void progress(void);

123456789