Lines Matching defs:progress
52 #include "progress.h"
125 progress(&(struct progress_arg){ .cdev = device });
208 progress(const struct progress_arg *p)
210 static struct progress_arg Progress;
218 Progress = *p;
225 if (!Progress.tick)
227 if (++Progress.cnt > Progress.tick) {
228 Progress.cnt = 0;
229 Progress.total++;
230 progress_bar(cdev, label, Progress.total, PROGRESS_BAR_GRANULE);