/linux-6.1.9/scripts/kconfig/ |
D | menu.c | 16 struct menu rootmenu; 17 static struct menu **last_entry_ptr; 22 void menu_warn(struct menu *menu, const char *fmt, ...) in menu_warn() argument 26 fprintf(stderr, "%s:%d:warning: ", menu->file->name, menu->lineno); in menu_warn() 50 struct menu *menu; in menu_add_entry() local 52 menu = xmalloc(sizeof(*menu)); in menu_add_entry() 53 memset(menu, 0, sizeof(*menu)); in menu_add_entry() 54 menu->sym = sym; in menu_add_entry() 55 menu->parent = current_menu; in menu_add_entry() 56 menu->file = current_file; in menu_add_entry() [all …]
|
D | nconf.c | 259 static struct menu *current_menu; 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); 289 typedef void (*function_key_handler_t)(int *key, struct menu *menu); 290 static void handle_f1(int *key, struct menu *current_item); 291 static void handle_f2(int *key, struct menu *current_item); 292 static void handle_f3(int *key, struct menu *current_item); 293 static void handle_f4(int *key, struct menu *current_item); [all …]
|
D | mconf.c | 279 static struct menu *current_menu; 286 static void conf(struct menu *menu, struct menu *active_menu); 287 static void conf_choice(struct menu *menu); 288 static void conf_string(struct menu *menu); 296 static void show_help(struct menu *menu); 357 struct menu **targets; 432 struct menu *targets[JUMP_NB]; in search_conf() 463 static void build_conf(struct menu *menu) in build_conf() argument 467 struct menu *child; in build_conf() 477 visible = menu_is_visible(menu); in build_conf() [all …]
|
D | lkc.h | 83 void menu_warn(struct menu *menu, const char *fmt, ...); 84 struct menu *menu_add_menu(void); 92 void menu_finalize(struct menu *parent); 95 extern struct menu rootmenu; 97 bool menu_is_empty(struct menu *menu); 98 bool menu_is_visible(struct menu *menu); 99 bool menu_has_prompt(struct menu *menu); 100 const char *menu_get_prompt(struct menu *menu); 101 struct menu *menu_get_parent_menu(struct menu *menu); 102 bool menu_has_help(struct menu *menu); [all …]
|
D | qconf.cc | 104 sym = menu->sym; in updateMenu() 105 prop = menu->prompt; in updateMenu() 106 prompt = menu_get_prompt(menu); in updateMenu() 114 if (sym && list->rootEntry == menu) in updateMenu() 186 if (!menu) in testUpdateMenu() 189 sym_calc_value(menu->sym); in testUpdateMenu() 190 if (menu->flags & MENU_CHANGED) { in testUpdateMenu() 192 menu->flags &= ~MENU_CHANGED; in testUpdateMenu() 193 for (i = (ConfigItem*)menu->data; i; i = i->nextItem) in testUpdateMenu() 205 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 | conf.c | 19 static void conf(struct menu *menu); 20 static void check_conf(struct menu *menu); 47 static struct menu *rootEntry; 49 static void print_help(struct menu *menu) in print_help() argument 53 menu_get_ext_help(menu, &help); in print_help() 349 static int conf_string(struct menu *menu) in conf_string() argument 351 struct symbol *sym = menu->sym; in conf_string() 355 printf("%*s%s ", indent - 1, "", menu->prompt->text); in conf_string() 368 print_help(menu); in conf_string() 382 static int conf_sym(struct menu *menu) in conf_sym() argument [all …]
|
D | gconf.c | 56 static struct menu *current; // current node for SINGLE view 57 static struct menu *browsed; // browsed node for SPLIT view 67 static void display_tree(struct menu *menu); 69 static void update_tree(struct menu *src, GtkTreeIter * dst); 70 static void set_node(GtkTreeIter * node, struct menu *menu, gchar ** row); 71 static gchar **fill_row(struct menu *menu); 362 static void text_insert_help(struct menu *menu) in text_insert_help() argument 366 const char *prompt = menu_get_prompt(menu); in text_insert_help() 369 menu_get_ext_help(menu, &help); in text_insert_help() 782 struct menu *menu; in renderer_edited() local [all …]
|
D | parser.y | 32 struct menu *current_menu, *current_entry; 41 struct menu *menu; member 97 %type <menu> if_entry menu_entry choice_entry 329 menu: T_MENU T_WORD_QUOTE T_EOL 336 menu_entry: menu menu_option_list 580 static void print_symbol(FILE *out, struct menu *menu) in print_symbol() argument 582 struct symbol *sym = menu->sym; in print_symbol() 610 if (prop->menu != menu) in print_symbol() 656 fprintf(out, "%s\n", prop->menu->sym->name); in print_symbol() 663 if (menu->help) { in print_symbol() [all …]
|
D | confdata.c | 824 struct menu *menu; in conf_write_defconfig() local 834 menu = rootmenu.list; in conf_write_defconfig() 836 while (menu != NULL) in conf_write_defconfig() 838 sym = menu->sym; in conf_write_defconfig() 840 if (!menu_is_visible(menu)) in conf_write_defconfig() 876 if (menu->list != NULL) { in conf_write_defconfig() 877 menu = menu->list; in conf_write_defconfig() 879 else if (menu->next != NULL) { in conf_write_defconfig() 880 menu = menu->next; in conf_write_defconfig() 882 while ((menu = menu->parent)) { in conf_write_defconfig() [all …]
|
D | nconf.gui.c | 204 MENU *menu; in btn_dialog() local 244 menu = new_menu(btns); in btn_dialog() 248 set_menu_fore(menu, attr_dialog_menu_fore); in btn_dialog() 249 set_menu_back(menu, attr_dialog_menu_back); in btn_dialog() 258 set_menu_win(menu, win); in btn_dialog() 259 set_menu_sub(menu, menu_win); in btn_dialog() 260 set_menu_format(menu, 1, btn_num); in btn_dialog() 261 menu_opts_off(menu, O_SHOWDESC); in btn_dialog() 262 menu_opts_off(menu, O_SHOWMATCH); in btn_dialog() 263 menu_opts_on(menu, O_ONEVALUE); in btn_dialog() [all …]
|
D | expr.h | 195 struct menu *menu; /* the menu the property are associated with member 217 struct menu { struct 219 struct menu *next; argument 222 struct menu *parent; argument 225 struct menu *list; argument 277 struct menu *target;
|
D | internal.h | 5 struct menu; 7 extern struct menu *current_menu, *current_entry;
|
/linux-6.1.9/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.1.9/scripts/kconfig/lxdialog/ |
D | menubox.c | 92 do_print_item(menu, item_str(), choice, selected, !item_is_tag(':')); \ 178 WINDOW *dialog, *menu; in dialog_menu() local 221 menu = subwin(dialog, menu_height, menu_width, in dialog_menu() 223 keypad(menu, TRUE); in dialog_menu() 260 wnoutrefresh(menu); in dialog_menu() 266 wmove(menu, choice, item_x + 1); in dialog_menu() 267 wrefresh(menu); in dialog_menu() 270 key = wgetch(menu); in dialog_menu() 304 do_scroll(menu, &scroll, -1); in dialog_menu() 316 do_scroll(menu, &scroll, 1); in dialog_menu() [all …]
|
/linux-6.1.9/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.1.9/tools/perf/Documentation/ |
D | cat-texi.perl | 6 my @menu = (); 15 push @menu, $1; 36 for (@menu) {
|
/linux-6.1.9/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.1.9/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.1.9/scripts/kconfig/tests/err_recursive_dep/ |
D | Kconfig | 55 # menu 57 menu "menu depending on its content"
|
/linux-6.1.9/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.1.9/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.1.9/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.1.9/drivers/soc/bcm/ |
D | Kconfig | 2 menu "Broadcom SoC drivers" 30 Drivers can be enabled individually within this menu. 41 can be enabled individually within this menu.
|
/linux-6.1.9/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 79 Default values are not limited to the menu entry where they are 119 This defines a dependency for this menu entry. If multiple 121 are applied to all other options within this menu entry (which also 137 another symbol. The value of the current menu symbol is used as the 205 - limiting menu display: "visible if" <expr> 207 This attribute is only applicable to menu blocks, if the condition is 208 false, the menu block is not displayed to the user (the symbols 210 similar to a conditional "prompt" attribute for individual menu [all …]
|