/linux-6.12.1/scripts/kconfig/ |
D | menu.c | 18 struct menu rootmenu; 19 static struct menu **last_entry_ptr; 28 struct menu *menu_next(struct menu *menu, struct menu *root) in menu_next() argument 30 if (menu->list) in menu_next() 31 return menu->list; in menu_next() 33 while (menu != root && !menu->next) in menu_next() 34 menu = menu->parent; in menu_next() 36 if (menu == root) in menu_next() 39 return menu->next; in menu_next() 42 void menu_warn(const struct menu *menu, const char *fmt, ...) in menu_warn() argument [all …]
|
D | lkc.h | 75 struct menu *menu_next(struct menu *menu, struct menu *root); 76 #define menu_for_each_sub_entry(menu, root) \ argument 77 for (menu = menu_next(root, root); menu; menu = menu_next(menu, root)) 78 #define menu_for_each_entry(menu) \ argument 79 menu_for_each_sub_entry(menu, &rootmenu) 81 void menu_warn(const struct menu *menu, const char *fmt, ...); 82 struct menu *menu_add_menu(void); 94 extern struct menu rootmenu; 96 bool menu_is_empty(struct menu *menu); 97 bool menu_is_visible(struct menu *menu); [all …]
|
D | nconf.c | 266 static struct menu *current_menu; 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); 297 typedef void (*function_key_handler_t)(int *key, struct menu *menu); 298 static void handle_f1(int *key, struct menu *current_item); 299 static void handle_f2(int *key, struct menu *current_item); 300 static void handle_f3(int *key, struct menu *current_item); [all …]
|
D | mconf.c | 286 static struct menu *current_menu; 293 static void conf(struct menu *menu, struct menu *active_menu); 372 static void show_help(struct menu *menu) in show_help() argument 377 menu_get_ext_help(menu, &help); in show_help() 379 show_helptext(menu_get_prompt(menu), str_get(&help)); in show_help() 454 static void build_conf(struct menu *menu) in build_conf() argument 458 struct menu *child; in build_conf() 468 visible = menu_is_visible(menu); in build_conf() 469 if (show_all_options && !menu_has_prompt(menu)) in build_conf() 474 sym = menu->sym; in build_conf() [all …]
|
D | conf.c | 20 static void conf(struct menu *menu); 21 static void check_conf(struct menu *menu); 48 static struct menu *rootEntry; 50 static void print_help(struct menu *menu) in print_help() argument 54 menu_get_ext_help(menu, &help); in print_help() 122 static void randomize_choice_values(struct menu *choice) in randomize_choice_values() 124 struct menu *menu; in randomize_choice_values() local 133 menu_for_each_sub_entry(menu, choice) { in randomize_choice_values() 134 struct symbol *sym = menu->sym; in randomize_choice_values() 143 menu_for_each_sub_entry(menu, choice) { in randomize_choice_values() [all …]
|
D | qconf.cc | 107 sym = menu->sym; in updateMenu() 108 prop = menu->prompt; in updateMenu() 109 prompt = menu_get_prompt(menu); in updateMenu() 117 if (sym && list->rootEntry == menu) in updateMenu() 189 if (!menu) in testUpdateMenu() 192 sym_calc_value(menu->sym); in testUpdateMenu() 193 if (menu->flags & MENU_CHANGED) { in testUpdateMenu() 195 menu->flags &= ~MENU_CHANGED; in testUpdateMenu() 196 for (i = (ConfigItem*)menu->data; i; i = i->nextItem) in testUpdateMenu() 208 if (menu) { in init() [all …]
|
D | qconf.h | 48 ConfigItem* findConfigItem(struct menu *); 66 void setRootMenu(struct menu *menu); 77 void menuChanged(struct menu *menu); 78 void menuSelected(struct menu *menu); 79 void itemSelected(struct menu *menu); 81 void gotFocus(struct menu *); 94 bool menuSkip(struct menu *); 96 void updateMenuList(ConfigItem *parent, struct menu*); 97 void updateMenuList(struct menu *menu); 104 struct menu *rootEntry; [all …]
|
D | parser.y | 32 struct menu *current_menu, *current_entry, *current_choice; 41 struct menu *menu; member 96 %type <menu> if_entry menu_entry choice_entry 346 menu: T_MENU T_WORD_QUOTE T_EOL 353 menu_entry: menu menu_option_list 499 static int choice_check_sanity(const struct menu *menu) 504 for (prop = menu->sym->prop; prop; prop = prop->next) { 512 if (prop->menu != menu && prop->type == P_PROMPT && 513 prop->menu->parent != menu->parent) { 526 struct menu *menu; in conf_parse() local [all …]
|
D | gconf.c | 54 static struct menu *current; // current node for SINGLE view 55 static struct menu *browsed; // browsed node for SPLIT view 65 static void display_tree(struct menu *menu); 67 static void update_tree(struct menu *src, GtkTreeIter * dst); 330 static void text_insert_help(struct menu *menu) in text_insert_help() argument 334 const char *prompt = menu_get_prompt(menu); in text_insert_help() 337 menu_get_ext_help(menu, &help); in text_insert_help() 747 struct menu *menu; in renderer_edited() local 753 gtk_tree_model_get(model2, &iter, COL_MENU, &menu, -1); in renderer_edited() 754 sym = menu->sym; in renderer_edited() [all …]
|
D | symbol.c | 80 struct menu *sym_get_choice_menu(const struct symbol *sym) in sym_get_choice_menu() 82 struct menu *menu = NULL; in sym_get_choice_menu() local 83 struct menu *m; in sym_get_choice_menu() 91 menu = m; in sym_get_choice_menu() 95 if (!menu) in sym_get_choice_menu() 99 menu = menu->parent; in sym_get_choice_menu() 100 } while (menu && !menu->sym); in sym_get_choice_menu() 102 if (menu && menu->sym && sym_is_choice(menu->sym)) in sym_get_choice_menu() 103 return menu; in sym_get_choice_menu() 182 struct menu *menu; in sym_set_changed() local [all …]
|
D | confdata.c | 402 struct menu *choice; in conf_read_simple() 752 struct menu *menu; in conf_write_defconfig() local 761 menu_for_each_entry(menu) { in conf_write_defconfig() 762 struct menu *choice; in conf_write_defconfig() 764 sym = menu->sym; in conf_write_defconfig() 799 struct menu *menu; in conf_write() local 838 menu = rootmenu.list; in conf_write() 839 while (menu) { in conf_write() 840 sym = menu->sym; in conf_write() 842 if (!menu_is_visible(menu)) in conf_write() [all …]
|
D | nconf.gui.c | 205 MENU *menu; in btn_dialog() local 245 menu = new_menu(btns); in btn_dialog() 249 set_menu_fore(menu, attr_dialog_menu_fore); in btn_dialog() 250 set_menu_back(menu, attr_dialog_menu_back); in btn_dialog() 259 set_menu_win(menu, win); in btn_dialog() 260 set_menu_sub(menu, menu_win); in btn_dialog() 261 set_menu_format(menu, 1, btn_num); in btn_dialog() 262 menu_opts_off(menu, O_SHOWDESC); in btn_dialog() 263 menu_opts_off(menu, O_SHOWMATCH); in btn_dialog() 264 menu_opts_on(menu, O_ONEVALUE); in btn_dialog() [all …]
|
D | expr.h | 193 struct menu *menu; /* the menu the property are associated with member 216 struct menu { struct 218 struct menu *next; argument 221 struct menu *parent; argument 224 struct menu *list; argument 280 struct menu *target;
|
D | internal.h | 20 struct menu; 22 extern struct menu *current_menu, *current_entry;
|
/linux-6.12.1/tools/perf/ui/browsers/ |
D | header.c | 32 static int list_menu__run(struct ui_browser *menu) in list_menu__run() argument 43 if (ui_browser__show(menu, "Header information", "Press 'q' to exit") < 0) in list_menu__run() 47 key = ui_browser__run(menu, 0); in list_menu__run() 51 offset = (unsigned long)menu->priv; in list_menu__run() 53 menu->priv = (void *)offset; in list_menu__run() 56 offset = (unsigned long)menu->priv; in list_menu__run() 59 menu->priv = (void *)offset; in list_menu__run() 64 ui_browser__help_window(menu, help); in list_menu__run() 78 ui_browser__hide(menu); in list_menu__run() 84 struct ui_browser menu = { in ui__list_menu() local [all …]
|
/linux-6.12.1/scripts/kconfig/lxdialog/ |
D | menubox.c | 84 do_print_item(menu, item_str(), choice, selected, !item_is_tag(':')); \ 170 WINDOW *dialog, *menu; in dialog_menu() local 213 menu = subwin(dialog, menu_height, menu_width, in dialog_menu() 215 keypad(menu, TRUE); in dialog_menu() 252 wnoutrefresh(menu); in dialog_menu() 258 wmove(menu, choice, item_x + 1); in dialog_menu() 259 wrefresh(menu); in dialog_menu() 262 key = wgetch(menu); in dialog_menu() 296 do_scroll(menu, &scroll, -1); in dialog_menu() 308 do_scroll(menu, &scroll, 1); in dialog_menu() [all …]
|
/linux-6.12.1/tools/perf/ui/tui/ |
D | util.c | 26 static int popup_menu__run(struct ui_browser *menu, int *keyp) in popup_menu__run() argument 30 if (ui_browser__show(menu, " ", "ESC: exit, ENTER|->: Select option") < 0) in popup_menu__run() 34 key = ui_browser__run(menu, 0); in popup_menu__run() 39 key = menu->index; in popup_menu__run() 50 key = menu->nr_entries; in popup_menu__run() 59 ui_browser__hide(menu); in popup_menu__run() 65 struct ui_browser menu = { in ui__popup_menu() local 72 return popup_menu__run(&menu, keyp); in ui__popup_menu()
|
/linux-6.12.1/tools/perf/Documentation/ |
D | cat-texi.perl | 6 my @menu = (); 15 push @menu, $1; 36 for (@menu) {
|
/linux-6.12.1/Documentation/admin-guide/media/ |
D | building.rst | 32 You can access a menu of Kernel building options with:: 48 The media subsystem is controlled by those menu configuration options:: 76 Instead of using a menu, the Kernel provides a script with allows 91 menu, under ``Device Drivers``. 107 menu or with:: 122 The remote controller menu allows selecting drivers for specific devices. 123 It's menu looks like this:: 172 menu\ [4]_:: 195 The Media menu has a lot more options than the remote controller menu. 218 ``Filter media drivers`` menu [all …]
|
/linux-6.12.1/Documentation/sphinx-static/ |
D | theme_rtd_colors.css | 13 .wy-menu-vertical li.current a { 17 .wy-menu-vertical li.on a, .wy-menu-vertical li.current > a {
|
/linux-6.12.1/drivers/cpuidle/ |
D | Kconfig | 2 menu "CPU Idle" 54 menu "ARM CPU Idle Drivers" 59 menu "MIPS CPU Idle Drivers" 64 menu "POWERPC CPU Idle Drivers" 69 menu "RISC-V CPU Idle Drivers"
|
/linux-6.12.1/scripts/kconfig/tests/err_recursive_dep/ |
D | Kconfig | 55 # menu 57 menu "menu depending on its content"
|
/linux-6.12.1/Documentation/admin-guide/ |
D | svga.rst | 35 ASK_VGA - Display a video mode menu upon startup (see below). 37 0..35 - Menu item number (when you have used the menu to view the list of 38 modes available on your adapter, you can specify the menu item you want 44 0x.... - Hexadecimal video mode ID (also displayed on the menu, see below 51 The ASK_VGA mode causes the kernel to offer a video mode menu upon 54 menu, if you press <SPACE> or wait 30 seconds, the kernel will boot up in 57 The menu looks like:: 74 "0 0F00 80x25" means that the first menu item (the menu items are numbered 89 The modes displayed on the menu are partially sorted: The list starts with 113 by entering its mode directly if you know it even if it isn't shown on the menu. [all …]
|
/linux-6.12.1/Documentation/userspace-api/media/v4l/ |
D | ext-ctrls-image-process.rst | 25 ``V4L2_CID_LINK_FREQ (integer menu)`` 43 ``V4L2_CID_TEST_PATTERN (menu)`` 48 ``V4L2_CID_DEINTERLACING_MODE (menu)`` 49 The video deinterlacing mode (such as Bob, Weave, ...). The menu items are
|
/linux-6.12.1/Documentation/kbuild/ |
D | kconfig-language.rst | 52 A menu entry can have a number of attributes. Not all of them are 71 Every menu entry can have at most one prompt, which is used to display 83 Default values are not limited to the menu entry where they are 123 This defines a dependency for this menu entry. If multiple 125 are applied to all other options within this menu entry (which also 141 another symbol. The value of the current menu symbol is used as the 158 selected by the logical AND of the value of the current menu symbol 216 will be the logical AND of the value of the current menu symbol and <expr>. 219 - limiting menu display: "visible if" <expr> 221 This attribute is only applicable to menu blocks, if the condition is [all …]
|