Home
last modified time | relevance | path

Searched refs:menu (Results 1 – 25 of 449) sorted by relevance

12345678910>>...18

/linux/scripts/kconfig/
A Dmenu.c28 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
72 menu = xmalloc(sizeof(*menu)); in menu_add_entry()
309 for (menu = parent->list; menu; menu = menu->next) { in _menu_finalize()
384 for (menu = parent->list; menu; menu = menu->next) in _menu_finalize()
415 for (menu = parent->next; menu; menu = menu->next) { in _menu_finalize()
455 for (menu = parent->list; menu; menu = menu->next) { in _menu_finalize()
581 for (; menu != &rootmenu; menu = menu->parent) { in menu_get_parent_menu()
631 menu = prop->menu; in get_prompt_str()
[all …]
A Dlkc.h75 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, ...);
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);
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);
[all …]
A Dnconf.c286 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);
759 static void build_conf(struct menu *menu) in build_conf() argument
1049 static void conf(struct menu *menu) in conf() argument
1054 static void selected_conf(struct menu *menu, struct menu *active_menu) in selected_conf() argument
1216 static void show_help(struct menu *menu) in show_help() argument
1229 static void conf_choice(struct menu *menu) in conf_choice() argument
[all …]
A Dmconf.c293 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 Dconf.c20 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 Dqconf.cc400 struct menu *menu; in updateSelection() local
410 menu = item->menu; in updateSelection()
516 struct menu* menu; in changeValue() local
519 menu = item->menu; in changeValue()
731 struct menu *menu; in keyPressEvent() local
753 menu = item->menu; in keyPressEvent()
795 struct menu *menu; in mouseReleaseEvent() local
803 menu = item->menu; in mouseReleaseEvent()
848 struct menu *menu; in mouseDoubleClickEvent() local
857 menu = item->menu; in mouseDoubleClickEvent()
[all …]
A Dqconf.h66 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 *);
97 void updateMenuList(struct menu *menu);
104 struct menu *rootEntry;
163 struct menu *menu; variable
175 struct menu *menu; variable
195 void setInfo(struct menu *menu);
[all …]
A Dparser.y41 struct menu *menu; member
513 prop->menu->parent != menu->parent) {
526 struct menu *menu; in conf_parse() local
565 if (menu->sym && sym_check_deps(menu->sym)) in conf_parse()
568 if (menu->sym && sym_is_choice(menu->sym)) { in conf_parse()
676 if (prop->menu != menu) in print_symbol()
734 struct menu *menu; in zconfdump() local
763 menu = menu->list; in zconfdump()
765 menu = menu->next; in zconfdump()
766 else while ((menu = menu->parent)) { in zconfdump()
[all …]
A Dgconf.c65 static void display_tree(struct menu *menu);
330 static void text_insert_help(struct menu *menu) in text_insert_help() argument
747 struct menu *menu; in renderer_edited() local
848 struct menu *menu; in on_treeview2_button_press_event() local
905 struct menu *menu; in on_treeview2_key_press_event() local
947 struct menu *menu; in on_treeview2_cursor_changed() local
966 struct menu *menu; in on_treeview1_button_press_event() local
998 static gchar **fill_row(struct menu *menu) in fill_row() argument
1185 struct menu *menu; in gtktree_iter_find_node() local
1289 static void display_tree(struct menu *menu) in display_tree() argument
[all …]
A Dsymbol.c82 struct menu *menu = NULL; in sym_get_choice_menu() local
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()
182 struct menu *menu; in sym_set_changed() local
253 struct menu *menu; in sym_choice_default() local
269 if (menu->sym && menu->sym->visible != no) in sym_choice_default()
287 struct menu *menu; in sym_calc_choice() local
571 struct menu *menu; in choice_set_value() local
[all …]
A Dconfdata.c752 struct menu *menu; in conf_write_defconfig() local
764 sym = menu->sym; in conf_write_defconfig()
799 struct menu *menu; in conf_write() local
839 while (menu) { in conf_write()
840 sym = menu->sym; in conf_write()
864 if (menu->list) { in conf_write()
865 menu = menu->list; in conf_write()
870 if (!menu->sym && menu_is_visible(menu) && menu != &rootmenu && in conf_write()
877 menu = menu->next; in conf_write()
879 menu = menu->parent; in conf_write()
[all …]
A Dnconf.gui.c205 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()
300 unpost_menu(menu); in btn_dialog()
[all …]
A Dexpr.h193 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;
A Dinternal.h20 struct menu;
22 extern struct menu *current_menu, *current_entry;
/linux/tools/perf/ui/browsers/
A Dheader.c32 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/scripts/kconfig/lxdialog/
A Dmenubox.c170 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 …]
/linux/tools/perf/ui/tui/
A Dutil.c26 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/tools/perf/Documentation/
A Dcat-texi.perl6 my @menu = ();
15 push @menu, $1;
36 for (@menu) {
/linux/Documentation/sphinx-static/
A Dtheme_rtd_colors.css13 .wy-menu-vertical li.current a {
17 .wy-menu-vertical li.on a, .wy-menu-vertical li.current > a {
/linux/Documentation/admin-guide/media/
A Dbuilding.rst32 You can access a menu of Kernel building options with::
76 Instead of using a menu, the Kernel provides a script with allows
91 menu, under ``Device Drivers``.
107 menu or with::
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
245 and ``Digital TV`` at the menu.
262 ``Media Core Support`` menu without filtering
[all …]
/linux/scripts/kconfig/tests/err_recursive_dep/
A DKconfig55 # menu
57 menu "menu depending on its content"
/linux/drivers/cpuidle/
A DKconfig2 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/Documentation/userspace-api/media/v4l/
A Dext-ctrls-image-process.rst25 ``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/Documentation/admin-guide/
A Dsvga.rst35 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
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
118 outside the menu as this can change from boot to boot (especially if you
125 0x0100. All VESA modes should be autodetected and shown on the menu.
[all …]
/linux/arch/riscv/
A DKconfig.vendor1 menu "Vendor extensions"
6 menu "Andes"

Completed in 885 milliseconds

12345678910>>...18