/scripts/kconfig/ |
A D | menu.c | 28 struct menu *menu_next(struct menu *menu, struct menu *root) in menu_next() argument 34 menu = menu->parent; in menu_next() 70 struct menu *menu; in menu_add_entry() local 310 for (menu = parent->list; menu; menu = menu->next) { in _menu_finalize() 385 for (menu = parent->list; menu; menu = menu->next) in _menu_finalize() 416 for (menu = parent->next; menu; menu = menu->next) { in _menu_finalize() 456 for (menu = parent->list; menu; menu = menu->next) { in _menu_finalize() 585 for (menu = menu->parent; menu; menu = menu->parent) in menu_get_parent_menu() 652 menu = prop->menu; in get_prompt_str() 715 struct menu *menu; in get_symbol_str() local [all …]
|
A D | lkc.h | 75 struct menu *menu_next(struct menu *menu, struct menu *root); 77 for (menu = menu_next(root, root); menu; menu = menu_next(menu, root)) 81 void menu_warn(const struct menu *menu, const char *fmt, ...); 94 extern struct menu rootmenu; 96 bool menu_is_empty(struct menu *menu); 97 bool menu_is_visible(struct menu *menu); 98 bool menu_has_prompt(const struct menu *menu); 99 const char *menu_get_prompt(const struct menu *menu); 100 struct menu *menu_get_parent_menu(struct menu *menu); 101 struct menu *menu_get_menu_or_parent_menu(struct menu *menu); [all …]
|
A D | mconf.c | 293 static void conf(struct menu *menu, struct menu *active_menu); 372 static void show_help(struct menu *menu) in show_help() argument 454 static void build_conf(struct menu *menu) in build_conf() argument 458 struct menu *child; in build_conf() 474 sym = menu->sym; in build_conf() 598 static void conf_choice(struct menu *menu) in conf_choice() argument 601 struct menu *child; in conf_choice() 659 static void conf_string(struct menu *menu) in conf_string() argument 691 show_help(menu); in conf_string() 753 static void conf(struct menu *menu, struct menu *active_menu) in conf() argument [all …]
|
A D | nconf.c | 286 static void selected_conf(struct menu *menu, struct menu *active_menu); 287 static void conf(struct menu *menu); 288 static void conf_choice(struct menu *menu); 289 static void conf_string(struct menu *menu); 292 static void show_help(struct menu *menu); 761 static void build_conf(struct menu *menu) in build_conf() argument 1051 static void conf(struct menu *menu) in conf() argument 1056 static void selected_conf(struct menu *menu, struct menu *active_menu) in selected_conf() argument 1218 static void show_help(struct menu *menu) in show_help() argument 1231 static void conf_choice(struct menu *menu) in conf_choice() argument [all …]
|
A D | conf.c | 20 static void conf(struct menu *menu); 21 static void check_conf(struct menu *menu); 50 static void print_help(struct menu *menu) in print_help() argument 124 struct menu *menu; in randomize_choice_values() local 177 struct menu *menu; in conf_set_all_new_symbols() local 323 static int conf_string(struct menu *menu) in conf_string() argument 356 static int conf_sym(struct menu *menu) in conf_sym() argument 423 static void conf_choice(struct menu *menu) in conf_choice() argument 509 static void conf(struct menu *menu) in conf() argument 518 sym = menu->sym; in conf() [all …]
|
A D | qconf.h | 65 void setRootMenu(struct menu *menu); 76 void menuChanged(struct menu *menu); 77 void menuSelected(struct menu *menu); 78 void itemSelected(struct menu *menu); 80 void gotFocus(struct menu *); 96 void updateMenuList(struct menu *menu); 103 struct menu *rootEntry; 162 struct menu *menu; variable 173 struct menu *menu; variable 193 void setInfo(struct menu *menu); [all …]
|
A D | qconf.cc | 412 struct menu *menu; in updateSelection() local 422 menu = item->menu; in updateSelection() 527 struct menu* menu; in changeValue() local 530 menu = item->menu; in changeValue() 738 struct menu *menu; in keyPressEvent() local 760 menu = item->menu; in keyPressEvent() 795 struct menu *menu; in mouseReleaseEvent() local 803 menu = item->menu; in mouseReleaseEvent() 841 struct menu *menu; in mouseDoubleClickEvent() local 850 menu = item->menu; in mouseDoubleClickEvent() [all …]
|
A D | parser.y | 40 struct menu *menu; member 506 prop->menu->parent != menu->parent) { 519 struct menu *menu; in conf_parse() local 558 if (menu->sym && sym_check_deps(menu->sym)) in conf_parse() 561 if (menu->sym && sym_is_choice(menu->sym)) { in conf_parse() 658 if (prop->menu != menu) in print_symbol() 716 struct menu *menu; in zconfdump() local 745 menu = menu->list; in zconfdump() 747 menu = menu->next; in zconfdump() 748 else while ((menu = menu->parent)) { in zconfdump() [all …]
|
A D | gconf.c | 86 static void text_insert_help(struct menu *menu) in text_insert_help() argument 103 struct menu *menu; in _select_menu() local 258 struct menu *menu; in _update_tree() local 665 struct menu *menu; in renderer_edited() local 719 static void toggle_sym_value(struct menu *menu) in toggle_sym_value() argument 754 struct menu *menu; in on_treeview2_button_press_event() local 806 struct menu *menu; in on_treeview2_key_press_event() local 845 struct menu *menu; in on_treeview2_cursor_changed() local 864 struct menu *menu; in on_treeview1_button_press_event() local 937 static void fixup_rootmenu(struct menu *menu) in fixup_rootmenu() argument [all …]
|
A D | symbol.c | 100 struct menu *menu = NULL; in sym_get_choice_menu() local 107 if (!menu) in sym_get_choice_menu() 111 menu = menu->parent; in sym_get_choice_menu() 112 } while (menu && !menu->sym); in sym_get_choice_menu() 114 if (menu && menu->sym && sym_is_choice(menu->sym)) in sym_get_choice_menu() 194 struct menu *menu; in sym_set_changed() local 269 struct menu *menu; in sym_choice_default() local 285 if (menu->sym && menu->sym->visible != no) in sym_choice_default() 303 struct menu *menu; in sym_calc_choice() local 588 struct menu *menu; in choice_set_value() local [all …]
|
A D | confdata.c | 761 struct menu *menu; in conf_write_defconfig() local 773 sym = menu->sym; in conf_write_defconfig() 808 struct menu *menu; in conf_write() local 848 while (menu) { in conf_write() 849 sym = menu->sym; in conf_write() 873 if (menu->list) { in conf_write() 874 menu = menu->list; in conf_write() 879 if (!menu->sym && menu_is_visible(menu) && menu != &rootmenu && in conf_write() 886 menu = menu->next; in conf_write() 888 menu = menu->parent; in conf_write() [all …]
|
A D | nconf.gui.c | 205 MENU *menu; in btn_dialog() local 245 menu = new_menu(btns); in btn_dialog() 259 set_menu_win(menu, win); in btn_dialog() 260 set_menu_sub(menu, menu_win); in btn_dialog() 262 menu_opts_off(menu, O_SHOWDESC); in btn_dialog() 264 menu_opts_on(menu, O_ONEVALUE); in btn_dialog() 265 menu_opts_on(menu, O_NONCYCLIC); in btn_dialog() 266 set_menu_mark(menu, ""); in btn_dialog() 267 post_menu(menu); in btn_dialog() 309 unpost_menu(menu); in btn_dialog() [all …]
|
A D | expr.h | 193 struct menu *menu; /* the menu the property are associated with member 225 struct menu { struct 229 struct menu *next; argument 232 struct menu *parent; argument 235 struct menu *list; argument 291 struct menu *target;
|
A D | internal.h | 20 struct menu; 22 extern struct menu *current_menu, *current_entry;
|
A D | lkc_proto.h | 31 void choice_set_value(struct menu *choice, struct symbol *sym); 37 struct menu *sym_get_prompt_menu(const struct symbol *sym); 38 struct menu *sym_get_choice_menu(const struct symbol *sym);
|
A D | mnconf-common.h | 11 struct menu *target;
|
/scripts/kconfig/lxdialog/ |
A D | menubox.c | 170 WINDOW *dialog, *menu; in dialog_menu() local 215 keypad(menu, TRUE); in dialog_menu() 252 wnoutrefresh(menu); in dialog_menu() 259 wrefresh(menu); in dialog_menu() 262 key = wgetch(menu); in dialog_menu() 316 scrollok(menu, TRUE); in dialog_menu() 347 wrefresh(menu); in dialog_menu() 360 wrefresh(menu); in dialog_menu() 374 delwin(menu); in dialog_menu() 408 delwin(menu); in dialog_menu() [all …]
|
/scripts/kconfig/tests/err_recursive_dep/ |
A D | Kconfig | 55 # menu 57 menu "menu depending on its content"
|
/scripts/kconfig/tests/no_write_if_dep_unmet/ |
A D | expected_config | 3 # Main menu
|
/scripts/kconfig/tests/choice_randomize/ |
A D | expected_config0 | 3 # Main menu
|
A D | expected_config1 | 3 # Main menu
|
A D | expected_config2 | 3 # Main menu
|
/scripts/kconfig/tests/choice_randomize2/ |
A D | expected_config2 | 3 # Main menu
|
A D | expected_config0 | 3 # Main menu
|
A D | expected_config1 | 3 # Main menu
|