| /scripts/kconfig/ |
| A D | menu.c | 49 struct menu *menu; in menu_add_entry() local 51 menu = xmalloc(sizeof(*menu)); in menu_add_entry() 52 memset(menu, 0, sizeof(*menu)); in menu_add_entry() 311 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize() 319 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize() 340 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize() 420 for (menu = parent->list; menu; menu = menu->next) in menu_finalize() 451 for (menu = parent->next; menu; menu = menu->next) { in menu_finalize() 495 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize() 674 struct menu *menu_get_root_menu(struct menu *menu) in menu_get_root_menu() argument [all …]
|
| A D | lkc_proto.h | 16 extern struct menu rootmenu; 18 bool menu_is_empty(struct menu *menu); 19 bool menu_is_visible(struct menu *menu); 20 bool menu_has_prompt(struct menu *menu); 21 const char * menu_get_prompt(struct menu *menu); 22 struct menu * menu_get_root_menu(struct menu *menu); 23 struct menu * menu_get_parent_menu(struct menu *menu); 24 bool menu_has_help(struct menu *menu); 25 const char * menu_get_help(struct menu *menu); 27 void menu_get_ext_help(struct menu *menu, struct gstr *help);
|
| A D | mconf.c | 283 static void conf(struct menu *menu, struct menu *active_menu); 284 static void conf_choice(struct menu *menu); 285 static void conf_string(struct menu *menu); 293 static void show_help(struct menu *menu); 465 static void build_conf(struct menu *menu) in build_conf() argument 485 sym = menu->sym; in build_conf() 643 static void conf(struct menu *menu, struct menu *active_menu) in conf() argument 661 build_conf(menu); in conf() 784 static void show_help(struct menu *menu) in show_help() argument 795 static void conf_choice(struct menu *menu) in conf_choice() argument [all …]
|
| A D | nconf.c | 279 static void conf(struct menu *menu); 280 static void conf_choice(struct menu *menu); 281 static void conf_string(struct menu *menu); 284 static void show_help(struct menu *menu); 733 static void build_conf(struct menu *menu) in build_conf() argument 906 if (menu->prompt && menu->prompt->type == P_MENU) { in build_conf() 1066 static void conf(struct menu *menu) in conf() argument 1216 static void show_help(struct menu *menu) in show_help() argument 1220 if (!menu) in show_help() 1229 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); 46 static void print_help(struct menu *menu) in print_help() argument 129 static int conf_string(struct menu *menu) in conf_string() argument 162 static int conf_sym(struct menu *menu) in conf_sym() argument 229 static int conf_choice(struct menu *menu) in conf_choice() argument 235 sym = menu->sym; in conf_choice() 238 conf_sym(menu); in conf_choice() 344 static void conf(struct menu *menu) in conf() argument 353 sym = menu->sym; in conf() [all …]
|
| A D | qconf.cc | 399 struct menu *menu; in updateSelection() local 409 menu = item->menu; in updateSelection() 493 struct menu* menu; in changeValue() local 496 menu = item->menu; in changeValue() 711 struct menu *menu; in keyPressEvent() local 733 menu = item->menu; in keyPressEvent() 772 struct menu *menu; in mouseReleaseEvent() local 780 menu = item->menu; in mouseReleaseEvent() 833 struct menu *menu; in mouseDoubleClickEvent() local 842 menu = item->menu; in mouseDoubleClickEvent() [all …]
|
| A D | qconf.h | 64 void setRootMenu(struct menu *menu); 72 void menuChanged(struct menu *menu); 73 void menuSelected(struct menu *menu); 75 void gotFocus(struct menu *); 103 bool menuSkip(struct menu *); 117 struct menu *rootEntry; 187 struct menu *menu; variable 249 void setInfo(struct menu *menu); 267 struct menu *_menu; 299 void changeMenu(struct menu *); [all …]
|
| A D | gconf.c | 73 static void display_tree(struct menu *menu); 77 static gchar **fill_row(struct menu *menu); 758 struct menu *menu; in renderer_edited() local 858 struct menu *menu; in on_treeview2_button_press_event() local 915 struct menu *menu; in on_treeview2_key_press_event() local 956 struct menu *menu; in on_treeview2_cursor_changed() local 974 struct menu *menu; in on_treeview1_button_press_event() local 1005 static gchar **fill_row(struct menu *menu) in fill_row() argument 1189 struct menu *menu; in gtktree_iter_find_node() local 1297 static void display_tree(struct menu *menu) in display_tree() argument [all …]
|
| A D | zconf.y | 42 struct menu *menu; member 646 static void print_symbol(FILE *out, struct menu *menu) in print_symbol() argument 676 if (prop->menu != menu) in print_symbol() 741 struct menu *menu; in zconfdump() local 744 while (menu) { in zconfdump() 769 if (menu->list) in zconfdump() 770 menu = menu->list; in zconfdump() 772 menu = menu->next; in zconfdump() 773 else while ((menu = menu->parent)) { in zconfdump() 774 if (menu->prompt && menu->prompt->type == P_MENU) in zconfdump() [all …]
|
| A D | confdata.c | 706 struct menu *menu; in conf_write_defconfig() local 759 menu = menu->list; in conf_write_defconfig() 762 menu = menu->next; in conf_write_defconfig() 764 while ((menu = menu->parent)) { in conf_write_defconfig() 766 menu = menu->next; in conf_write_defconfig() 780 struct menu *menu; in conf_write() local 825 while (menu) { in conf_write() 846 menu = menu->list; in conf_write() 850 menu = menu->next; in conf_write() 851 else while ((menu = menu->parent)) { in conf_write() [all …]
|
| A D | nconf.gui.c | 252 MENU *menu; in btn_dialog() local 290 menu = new_menu(btns); in btn_dialog() 304 set_menu_win(menu, win); in btn_dialog() 305 set_menu_sub(menu, menu_win); in btn_dialog() 307 menu_opts_off(menu, O_SHOWDESC); in btn_dialog() 309 menu_opts_on(menu, O_ONEVALUE); in btn_dialog() 310 menu_opts_on(menu, O_NONCYCLIC); in btn_dialog() 311 set_menu_mark(menu, ""); in btn_dialog() 312 post_menu(menu); in btn_dialog() 344 unpost_menu(menu); in btn_dialog() [all …]
|
| A D | expr.h | 198 struct menu *menu; /* the menu the property are associated with member 220 struct menu { struct 222 struct menu *next; argument 225 struct menu *parent; argument 228 struct menu *list; argument 280 struct menu *target;
|
| A D | lkc.h | 85 void menu_warn(struct menu *menu, const char *fmt, ...); 86 struct menu *menu_add_menu(void); 95 void menu_finalize(struct menu *parent);
|
| A D | symbol.c | 159 if (prop->menu) in sym_set_changed() 160 prop->menu->flags |= MENU_CHANGED; in sym_set_changed() 1043 struct menu *menu = NULL; in sym_check_print_recursive() local 1070 menu = prop->menu; in sym_check_print_recursive() 1071 if (prop->menu) in sym_check_print_recursive() 1081 menu->file->name, menu->lineno, in sym_check_print_recursive() 1086 menu->file->name, menu->lineno, in sym_check_print_recursive()
|
| /scripts/kconfig/lxdialog/ |
| A D | menubox.c | 178 WINDOW *dialog, *menu; in dialog_menu() local 223 keypad(menu, TRUE); in dialog_menu() 260 wnoutrefresh(menu); in dialog_menu() 267 wrefresh(menu); in dialog_menu() 270 key = wgetch(menu); in dialog_menu() 324 scrollok(menu, TRUE); in dialog_menu() 355 wrefresh(menu); in dialog_menu() 368 wrefresh(menu); in dialog_menu() 382 delwin(menu); in dialog_menu() 416 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
|