Lines Matching full:percent
45 int percent; member
155 (void) wprintw(dialog, "%3d%%", obj->percent); in repaint_text()
162 x = (obj->percent * (obj->width - 2 * (3 + MARGIN))) / 100; in repaint_text()
205 obj->percent = atoi(buf); in handle_input()
223 obj->percent = atoi(buf); in handle_input()
281 dlg_update_gauge(void *objptr, int percent) in dlg_update_gauge() argument
288 obj->percent = percent; in dlg_update_gauge()
302 int percent) in dlg_reallocate_gauge() argument
351 obj->percent = percent; in dlg_reallocate_gauge()
370 int percent) in dlg_allocate_gauge() argument
372 return dlg_reallocate_gauge(NULL, title, cprompt, height, width, percent); in dlg_allocate_gauge()
393 * Display a gauge, or progress meter. Starts at percent% and reads stdin. If
405 int percent) in dialog_gauge() argument
409 void *objptr = dlg_allocate_gauge(title, cprompt, height, width, percent); in dialog_gauge()
417 DLG_TRACE2N("percent", percent); in dialog_gauge()
420 dlg_update_gauge(obj, percent); in dialog_gauge()
435 oldobj->percent); in dialog_gauge()
447 dlg_update_gauge(obj, obj->percent); in dialog_gauge()