Home
last modified time | relevance | path

Searched refs:prompt (Results 1 – 25 of 38) sorted by relevance

12

/busybox-1.35.0/scripts/kconfig/
Dmenu.c122 struct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *d… in menu_add_prop() argument
127 prop->text = prompt; in menu_add_prop()
131 if (prompt) { in menu_add_prop()
132 if (current_entry->prompt) in menu_add_prop()
134 current_entry->prompt = prop; in menu_add_prop()
140 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep) in menu_add_prompt() argument
142 return menu_add_prop(type, prompt, NULL, dep); in menu_add_prompt()
226 } else if (parent->prompt) in menu_finalize()
227 parentdep = parent->prompt->visible.expr; in menu_finalize()
239 prop = menu->prompt; in menu_finalize()
[all …]
Dzconf.y85 %type <string> prompt
112 | stmt_list T_MAINMENU prompt nl
167 if (current_entry->prompt)
168 current_entry->prompt->type = P_MENU;
192 config_option: T_PROMPT prompt if_expr T_EOL
256 choice_option: T_PROMPT prompt if_expr T_EOL
324 menu: T_MENU prompt T_EOL
354 source_stmt: T_SOURCE prompt T_EOL
362 comment: T_COMMENT prompt T_EOL
416 | prompt if_expr
[all …]
Dmconf.c588 prop = menu->prompt; in build_conf()
591 const char *prompt = menu_get_prompt(menu); in build_conf() local
600 indent + 1, ' ', prompt); in build_conf()
602 cprint1(" %*c%s --->", indent + 1, ' ', prompt); in build_conf()
609 if (prompt) { in build_conf()
612 cprint("---%*c%s", indent + 1, ' ', prompt); in build_conf()
716 if (menu->prompt->type == P_MENU) { in build_conf()
734 const char *prompt = menu_get_prompt(menu); in conf() local
744 cprint("%s", prompt ? prompt : _("Main Menu")); in conf()
798 else if (submenu->prompt->type == P_MENU) in conf()
[all …]
Dqconf.cc121 type = child->prompt ? child->prompt->type : P_UNKNOWN; in updateMenuList()
182 QString prompt; in updateMenu() local
189 prompt = ".."; in updateMenu()
194 prop = menu->prompt; in updateMenu()
195 prompt = QString::fromLocal8Bit(menu_get_prompt(menu)); in updateMenu()
283 prompt = QString("%1: %2").arg(prompt).arg(data); in updateMenu()
285 prompt = QString("(%2) %1").arg(prompt).arg(data); in updateMenu()
289 prompt += " (NEW)"; in updateMenu()
291 setText(promptColIdx, prompt); in updateMenu()
458 type = menu->prompt ? menu->prompt->type : P_UNKNOWN; in updateSelection()
[all …]
Dconf.c219 printf("%*s%s ", indent - 1, "", menu->prompt->text); in conf_string()
251 printf("%*s%s ", indent - 1, "", menu->prompt->text); in conf_sym()
454 prop = menu->prompt; in conf()
456 const char *prompt; in conf() local
465 prompt = menu_get_prompt(menu); in conf()
466 if (prompt) in conf()
469 indent, '*', prompt, in conf()
Dlkc.h77 struct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *d…
78 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep);
Dzconf.gperf29 prompt, T_PROMPT, TF_COMMAND keyword
Dgconf.c467 const char *prompt = menu_get_prompt(menu); in text_insert_help() local
487 gtk_text_buffer_insert_with_tags(buffer, &end, prompt, -1, tag1, in text_insert_help()
813 ptype = current->prompt ? current->prompt->type : P_UNKNOWN; in on_back_clicked()
1051 ptype = menu->prompt ? menu->prompt->type : P_UNKNOWN; in on_treeview2_button_press_event()
1203 ptype = menu->prompt ? menu->prompt->type : P_UNKNOWN; in fill_row()
1404 prop = child1->prompt; in update_tree()
1484 prop = child->prompt; in display_tree()
1562 if (child->prompt && child->prompt->type == P_MENU) { in fixup_rootmenu()
Dzconf.hash.c_shipped113 char kconf_id_strings_str46[sizeof("prompt")];
146 "prompt"
/busybox-1.35.0/libbb/
Dbb_askpass.c16 char* FAST_FUNC bb_ask_noecho(int fd, int timeout, const char *prompt) in bb_ask_noecho() argument
28 fputs_stdout(prompt); in bb_ask_noecho()
96 char* FAST_FUNC bb_ask_noecho_stdin(const char *prompt) in bb_ask_noecho_stdin() argument
98 return bb_ask_noecho(STDIN_FILENO, 0, prompt); in bb_ask_noecho_stdin()
Dcorrect_password.c98 int timeout, const char *prompt) in ask_and_check_password_extended() argument
109 plaintext = bb_ask_noecho(STDIN_FILENO, timeout, prompt); in ask_and_check_password_extended()
/busybox-1.35.0/scripts/kconfig/lxdialog/
Ddialog.h146 void print_autowrap(WINDOW * win, const char *prompt, int width, int y, int x);
154 int dialog_yesno(const char *title, const char *prompt, int height, int width);
155 int dialog_msgbox(const char *title, const char *prompt, int height,
158 int dialog_menu(const char *title, const char *prompt, int height, int width,
161 int dialog_checklist(const char *title, const char *prompt, int height,
165 int dialog_inputbox(const char *title, const char *prompt, int height,
Dmsgbox.c28 int dialog_msgbox(const char *title, const char *prompt, int height, int width, in dialog_msgbox() argument
48 print_autowrap(dialog, prompt, width - 2, 1, 2); in dialog_msgbox()
Dyesno.c42 int dialog_yesno(const char *title, const char *prompt, int height, int width) in dialog_yesno() argument
67 print_autowrap(dialog, prompt, width - 2, 1, 3); in dialog_yesno()
Dinputbox.c44 int dialog_inputbox(const char *title, const char *prompt, int height, int width, in dialog_inputbox() argument
72 print_autowrap(dialog, prompt, width - 2, 1, 3); in dialog_inputbox()
Dutil.c200 void print_autowrap(WINDOW * win, const char *prompt, int width, int y, int x) in print_autowrap() argument
206 strcpy(tempstr, prompt); in print_autowrap()
Dchecklist.c111 int dialog_checklist(const char *title, const char *prompt, int height, in dialog_checklist() argument
159 print_autowrap(dialog, prompt, width - 2, 1, 3); in dialog_checklist()
Dmenubox.c181 int dialog_menu(const char *title, const char *prompt, int height, int width, in dialog_menu() argument
214 print_autowrap(dialog, prompt, width - 2, 1, 3); in dialog_menu()
/busybox-1.35.0/examples/bootfloppy/
Dsyslinux.cfg4 prompt 1
Ddisplay.txt3 Hit RETURN to boot or enter boot parameters at the prompt below.
/busybox-1.35.0/docs/
DKconfig-language.txt40 the config option, input prompt, dependencies, help text and default
42 name, but every definition can have only a single input prompt and the
54 definition optionally accepts an input prompt, so these two examples
60 prompt "Networking support"
62 - input prompt: "prompt" <prompt> ["if" <expr>]
63 Every menu entry can have at most one prompt, which is used to display
64 to the user. Optionally dependencies only for this prompt can be added
74 value was set by the user (via the input prompt above). If an input
75 prompt is visible the default value is presented to the user and can
225 "comment" <prompt>
[all …]
/busybox-1.35.0/editors/
Ded.c51 const char *prompt; member
61 #define prompt (G.prompt ) macro
795 len = read_line_input(NULL, prompt, buf, sizeof(buf)); in doCommands()
1007 prompt = ""; /* no prompt by default */ in ed_main()
1008 getopt32(argv, "p:", &prompt); in ed_main()
/busybox-1.35.0/loginutils/
DREADME37 It should be possible to run "getty 0 -" from a shell prompt.
62 It should be possible to run "login [USER]" from a shell prompt,
Dlogin.c262 prompt: in get_username_or_die()
272 goto prompt; in get_username_or_die()
/busybox-1.35.0/util-linux/
Dfdisk_osf.c791 char prompt[sizeof("Partition (a-%c): ") + 16]; in xbsd_get_part_index() local
794 snprintf(prompt, sizeof(prompt), "Partition (a-%c): ", 'a' + max - 1); in xbsd_get_part_index()
796 l = tolower(read_nonempty(prompt)); in xbsd_get_part_index()

12