Home
last modified time | relevance | path

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

12

/xen/xen/tools/kconfig/
A Dmenu.c135 if (prompt) { in menu_add_prop()
139 prompt++; in menu_add_prop()
172 prop->text = prompt; in menu_add_prop()
442 basedep = parent->prompt ? parent->prompt->visible.expr : NULL; in menu_finalize()
449 dep = menu->prompt ? menu->prompt->visible.expr : menu->dep; in menu_finalize()
497 if (!menu->prompt) in menu_finalize()
561 if (menu->list && (!menu->prompt || !menu->prompt->text)) { in menu_finalize()
603 if (!menu->prompt) in menu_has_prompt()
630 if (!menu->prompt) in menu_is_visible()
664 if (menu->prompt) in menu_get_prompt()
[all …]
A Dmconf.c486 prop = menu->prompt; in build_conf()
496 indent + 1, ' ', prompt); in build_conf()
499 indent + 1, ' ', prompt, in build_conf()
507 if (prompt) { in build_conf()
515 if (prompt) { in build_conf()
630 if (menu->prompt->type == P_MENU) { in build_conf()
646 const char *prompt = menu_get_prompt(menu); in conf() local
666 res = dialog_menu(prompt ? prompt : "Main Menu", in conf()
797 const char *prompt = menu_get_prompt(menu); in conf_choice() local
824 res = dialog_checklist(prompt ? prompt : "Main Menu", in conf_choice()
[all …]
A Dnconf.c748 prop = menu->prompt; in build_conf()
753 ptype = menu->prompt ? menu->prompt->type : P_UNKNOWN; in build_conf()
757 prompt = prompt; in build_conf()
773 if (prompt) { in build_conf()
778 prompt); in build_conf()
782 if (prompt) { in build_conf()
786 prompt); in build_conf()
908 if (menu->prompt && menu->prompt->type == P_MENU) { in build_conf()
1089 show_menu(prompt ? prompt : "Main Menu", in conf()
1270 show_menu(prompt ? prompt : "Choice Menu", in conf_choice()
[all …]
A Dparser.y93 %type <string> prompt
116 mainmenu_stmt: T_MAINMENU prompt T_EOL
162 if (current_entry->prompt)
163 current_entry->prompt->type = P_MENU;
337 menu: T_MENU prompt T_EOL
366 source_stmt: T_SOURCE prompt T_EOL
375 comment: T_COMMENT prompt T_EOL
432 | prompt if_expr
437 prompt: T_WORD
693 else if ((prop = menu->prompt)) { in zconfdump()
[all …]
A Dqconf.cc108 QString prompt; in updateMenu() local
115 prompt = ".."; in updateMenu()
204 prompt = QString("%1: %2").arg(prompt).arg(data); in updateMenu()
206 prompt = QString("(%2) %1").arg(prompt).arg(data); in updateMenu()
413 type = menu->prompt ? menu->prompt->type : P_UNKNOWN; in updateSelection()
599 type = child->prompt ? child->prompt->type : P_UNKNOWN; in updateMenuList()
664 type = child->prompt ? child->prompt->type : P_UNKNOWN; in updateMenuList()
736 type = menu->prompt ? menu->prompt->type : P_UNKNOWN; in keyPressEvent()
794 ptype = menu->prompt ? menu->prompt->type : P_UNKNOWN; in mouseReleaseEvent()
845 ptype = menu->prompt ? menu->prompt->type : P_UNKNOWN; in mouseDoubleClickEvent()
[all …]
A Dconf.c135 printf("%*s%s ", indent - 1, "", menu->prompt->text); in conf_string()
168 printf("%*s%s ", indent - 1, "", menu->prompt->text); in conf_sym()
354 prop = menu->prompt; in conf()
356 const char *prompt; in conf() local
370 prompt = menu_get_prompt(menu); in conf()
371 if (prompt) in conf()
374 indent, '*', prompt, in conf()
A Dgconf.c186 gtk_window_set_title(GTK_WINDOW(main_wnd), rootmenu.prompt->text); in init_main_window()
369 const char *prompt = menu_get_prompt(menu); in text_insert_help() local
380 gtk_text_buffer_insert_with_tags(buffer, &end, prompt, -1, tag1, in text_insert_help()
711 ptype = current->prompt ? current->prompt->type : P_UNKNOWN; in on_back_clicked()
909 ptype = menu->prompt ? menu->prompt->type : P_UNKNOWN; in on_treeview2_button_press_event()
1062 ptype = menu->prompt ? menu->prompt->type : P_UNKNOWN; in fill_row()
1346 prop = child->prompt; in display_tree()
1432 if (child->prompt && child->prompt->type == P_MENU) { in fixup_rootmenu()
A Dnconf.h87 const char *title, const char *prompt,
A Dnconf.gui.c358 const char *title, const char *prompt, in dialog_inputbox() argument
381 prompt_lines = get_line_no(prompt); in dialog_inputbox()
383 const char *line = get_line(prompt, i); in dialog_inputbox()
418 fill_window(prompt_win, prompt); in dialog_inputbox()
/xen/xen/tools/kconfig/tests/choice/
A DKconfig9 prompt "boolean choice"
21 prompt "optional boolean choice"
34 prompt "tristate choice"
46 prompt "optional tristate choice"
/xen/xen/tools/kconfig/tests/rand_nested_choice/
A DKconfig4 prompt "choice"
14 prompt "sub choice"
24 prompt "subsub choice"
/xen/xen/tools/kconfig/lxdialog/
A Ddialog.h204 void print_autowrap(WINDOW * win, const char *prompt, int width, int y, int x);
212 int dialog_yesno(const char *title, const char *prompt, int height, int width);
213 int dialog_msgbox(const char *title, const char *prompt, int height,
222 int dialog_menu(const char *title, const char *prompt,
224 int dialog_checklist(const char *title, const char *prompt, int height,
226 int dialog_inputbox(const char *title, const char *prompt, int height,
A Dyesno.c29 int dialog_yesno(const char *title, const char *prompt, int height, int width) in dialog_yesno() argument
61 print_autowrap(dialog, prompt, width - 2, 1, 3); in dialog_yesno()
A Dinputbox.c31 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()
A Dchecklist.c104 int dialog_checklist(const char *title, const char *prompt, int height, in dialog_checklist() argument
150 print_autowrap(dialog, prompt, width - 2, 1, 3); in dialog_checklist()
/xen/xen/tools/kconfig/tests/inter_choice/
A DKconfig8 prompt "Choice"
19 prompt "Another choice"
/xen/xen/tools/kconfig/tests/new_choice_with_dep/
A DKconfig9 prompt "Choice ?"
25 prompt "Choice2 ?"
/xen/xen/arch/x86/
A DKconfig47 prompt "PV support"
94 prompt "HVM support"
169 prompt "Xen tboot support" if EXPERT
178 prompt "Alignment of Xen image"
213 prompt "PVH Guest"
222 prompt "PV Shim"
/xen/xen/tools/kconfig/tests/no_write_if_dep_unmet/
A DKconfig7 prompt "Choice ?"
/xen/xen/tools/kconfig/tests/choice_value_with_m_dep/
A DKconfig12 prompt "Tristate Choice"
/xen/docs/misc/
A Dkconfig-language.rst44 the config option, input prompt, dependencies, help text and default
46 name, but every definition can have only a single input prompt and the
59 definition optionally accepts an input prompt, so these two examples
67 prompt "Networking support"
69 - input prompt: "prompt" <prompt> ["if" <expr>]
157 from a direct dependency or with a visible prompt.
189 similar to a conditional "prompt" attribute for individual menu
419 "comment" <prompt>
428 "menu" <prompt>
448 "source" <prompt>
[all …]
/xen/xen/tools/kconfig/tests/auto_submenu/
A DKconfig29 prompt "choice"
/xen/xen/common/
A DKconfig42 prompt "Memory Access and VM events" if !MEM_ACCESS_ALWAYS_ON
165 prompt "Xen Oprofile Support" if EXPERT
189 prompt "FLux Advanced Security Kernel support"
202 prompt "Maintain statistics on the FLASK access vector cache" if EXPERT
229 prompt "SILO support"
240 prompt "Default XSM implementation"
/xen/xen/arch/arm/platforms/
A DKconfig2 prompt "Platform Support"
/xen/tools/xenstat/xentop/
A Dxentop.c215 char *prompt = NULL; variable
346 prompt = new_prompt; in set_prompt()
355 if(prompt == NULL) { in handle_key()
1009 if (prompt != NULL) { in do_bottom_line()
1010 printw("%s: %s", prompt, prompt_val); in do_bottom_line()

Completed in 32 milliseconds

12