Home
last modified time | relevance | path

Searched refs:pipe_input (Results 1 – 6 of 6) sorted by relevance

/freebsd-10-stable/contrib/dialog/
Dguage.c188 if (dialog_state.pipe_input == 0) { in handle_input()
190 } else if ((status = read_data(buf, dialog_state.pipe_input)) > 0) { in handle_input()
198 if ((status = read_data(buf, dialog_state.pipe_input)) > 0) { in handle_input()
207 while ((status = read_data(buf, dialog_state.pipe_input)) > 0 in handle_input()
223 if (feof(dialog_state.pipe_input) || in handle_input()
224 (ferror(dialog_state.pipe_input) && errno != EINTR)) { in handle_input()
327 obj->obj.input = dialog_state.pipe_input; in dlg_reallocate_gauge()
Dprogressbox.c303 dialog_state.pipe_input); in dialog_progressbox()
304 dialog_state.pipe_input = 0; in dialog_progressbox()
Dui_getc.c93 if (p->input == dialog_state.pipe_input) in dlg_remove_callback()
94 dialog_state.pipe_input = 0; in dlg_remove_callback()
Dutil.c328 dialog_state.pipe_input = stdin; in init_dialog()
333 dialog_state.pipe_input = fdopen(fd2, "r"); in init_dialog()
343 dialog_state.pipe_input = fdopen(fd2, "r"); in init_dialog()
1754 if (dialog_state.pipe_input) { in dlg_exit()
1755 if (dialog_state.pipe_input != stdin) { in dlg_exit()
1756 fclose(dialog_state.pipe_input); in dlg_exit()
1757 dialog_state.pipe_input = 0; in dlg_exit()
Ddialog.c1040 dialog_state.pipe_input) in call_programbox()
1046 dialog_state.pipe_input)); in call_programbox()
1047 dialog_state.pipe_input = 0; in call_programbox()
Ddialog.h429 FILE *pipe_input; /* used for gauge widget */ member