Home
last modified time | relevance | path

Searched refs:menu (Results 1 – 200 of 371) sorted by relevance

12

/linux-4.4.14/scripts/kconfig/
Dmenu.c15 struct menu rootmenu;
16 static struct menu **last_entry_ptr;
21 void menu_warn(struct menu *menu, const char *fmt, ...) in menu_warn() argument
25 fprintf(stderr, "%s:%d:warning: ", menu->file->name, menu->lineno); in menu_warn()
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()
53 menu->sym = sym; in menu_add_entry()
54 menu->parent = current_menu; in menu_add_entry()
55 menu->file = current_file; in menu_add_entry()
[all …]
Dlkc_proto.h15 extern struct menu rootmenu;
17 bool menu_is_empty(struct menu *menu);
18 bool menu_is_visible(struct menu *menu);
19 bool menu_has_prompt(struct menu *menu);
20 const char * menu_get_prompt(struct menu *menu);
21 struct menu * menu_get_root_menu(struct menu *menu);
22 struct menu * menu_get_parent_menu(struct menu *menu);
23 bool menu_has_help(struct menu *menu);
24 const char * menu_get_help(struct menu *menu);
26 void menu_get_ext_help(struct menu *menu, struct gstr *help);
Dmconf.c277 static struct menu *current_menu;
284 static void conf(struct menu *menu, struct menu *active_menu);
285 static void conf_choice(struct menu *menu);
286 static void conf_string(struct menu *menu);
294 static void show_help(struct menu *menu);
360 struct menu **targets;
435 struct menu *targets[JUMP_NB]; in search_conf()
466 static void build_conf(struct menu *menu) in build_conf() argument
470 struct menu *child; in build_conf()
480 visible = menu_is_visible(menu); in build_conf()
[all …]
Dnconf.c257 static struct menu *current_menu;
277 static void conf(struct menu *menu);
278 static void conf_choice(struct menu *menu);
279 static void conf_string(struct menu *menu);
282 static void show_help(struct menu *menu);
287 typedef void (*function_key_handler_t)(int *key, struct menu *menu);
288 static void handle_f1(int *key, struct menu *current_item);
289 static void handle_f2(int *key, struct menu *current_item);
290 static void handle_f3(int *key, struct menu *current_item);
291 static void handle_f4(int *key, struct menu *current_item);
[all …]
Dconf.c20 static void conf(struct menu *menu);
21 static void check_conf(struct menu *menu);
45 static struct menu *rootEntry;
47 static void print_help(struct menu *menu) in print_help() argument
51 menu_get_ext_help(menu, &help); in print_help()
133 static int conf_string(struct menu *menu) in conf_string() argument
135 struct symbol *sym = menu->sym; in conf_string()
139 printf("%*s%s ", indent - 1, "", _(menu->prompt->text)); in conf_string()
152 print_help(menu); in conf_string()
166 static int conf_sym(struct menu *menu) in conf_sym() argument
[all …]
Dqconf.cc120 sym = menu->sym; in updateMenu()
121 prop = menu->prompt; in updateMenu()
122 prompt = _(menu_get_prompt(menu)); in updateMenu()
130 if (sym && list->rootEntry == menu) in updateMenu()
221 if (!menu) in testUpdateMenu()
224 sym_calc_value(menu->sym); in testUpdateMenu()
225 if (menu->flags & MENU_CHANGED) { in testUpdateMenu()
227 menu->flags &= ~MENU_CHANGED; in testUpdateMenu()
228 for (i = (ConfigItem*)menu->data; i; i = i->nextItem) in testUpdateMenu()
240 if (menu) { in init()
[all …]
Dqconf.h52 ConfigItem* findConfigItem(struct menu *);
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 *);
105 void updateMenuList(ConfigItem *parent, struct menu*);
106 void updateMenuList(ConfigList *parent, struct menu*);
117 struct menu *rootEntry;
126 ConfigItem(ConfigList *parent, ConfigItem *after, struct menu *m, bool v) in ConfigItem()
[all …]
Dgconf.c62 static struct menu *current; // current node for SINGLE view
63 static struct menu *browsed; // browsed node for SPLIT view
73 static void display_tree(struct menu *menu);
75 static void update_tree(struct menu *src, GtkTreeIter * dst);
76 static void set_node(GtkTreeIter * node, struct menu *menu, gchar ** row);
77 static gchar **fill_row(struct menu *menu);
367 static void text_insert_help(struct menu *menu) in text_insert_help() argument
371 const char *prompt = _(menu_get_prompt(menu)); in text_insert_help()
374 menu_get_ext_help(menu, &help); in text_insert_help()
786 struct menu *menu; in renderer_edited() local
[all …]
Dkxgettext.c171 static void menu_build_message_list(struct menu *menu) in menu_build_message_list() argument
173 struct menu *child; in menu_build_message_list()
175 message__add(menu_get_prompt(menu), NULL, in menu_build_message_list()
176 menu->file == NULL ? "Root Menu" : menu->file->name, in menu_build_message_list()
177 menu->lineno); in menu_build_message_list()
179 if (menu->sym != NULL && menu_has_help(menu)) in menu_build_message_list()
180 message__add(menu_get_help(menu), menu->sym->name, in menu_build_message_list()
181 menu->file == NULL ? "Root Menu" : menu->file->name, in menu_build_message_list()
182 menu->lineno); in menu_build_message_list()
184 for (child = menu->list; child != NULL; child = child->next) in menu_build_message_list()
Dzconf.y31 static struct menu *current_menu, *current_entry;
42 struct menu *menu; member
92 %type <menu> if_entry menu_entry choice_entry
356 menu: T_MENU prompt T_EOL
363 menu_entry: menu visibility_list depends_list
608 static void print_symbol(FILE *out, struct menu *menu) in print_symbol() argument
610 struct symbol *sym = menu->sym; in print_symbol()
638 if (prop->menu != menu) in print_symbol()
682 if (menu->help) { in print_symbol()
683 int len = strlen(menu->help); in print_symbol()
[all …]
Dconfdata.c669 struct menu *menu; in conf_write_defconfig() local
679 menu = rootmenu.list; in conf_write_defconfig()
681 while (menu != NULL) in conf_write_defconfig()
683 sym = menu->sym; in conf_write_defconfig()
685 if (!menu_is_visible(menu)) in conf_write_defconfig()
721 if (menu->list != NULL) { in conf_write_defconfig()
722 menu = menu->list; in conf_write_defconfig()
724 else if (menu->next != NULL) { in conf_write_defconfig()
725 menu = menu->next; in conf_write_defconfig()
727 while ((menu = menu->parent)) { in conf_write_defconfig()
[all …]
Dzconf.tab.c106 static struct menu *current_menu, *current_entry;
195 struct menu *menu; member
1358 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno);
1359 if (current_menu == (yyvaluep->menu))
1368 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno);
1369 if (current_menu == (yyvaluep->menu))
1378 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno);
1379 if (current_menu == (yyvaluep->menu))
1836 (yyval.menu) = menu_add_menu();
1897 (yyval.menu) = menu_add_menu();
[all …]
Dnconf.gui.c253 MENU *menu; in btn_dialog() local
293 menu = new_menu(btns); in btn_dialog()
297 set_menu_fore(menu, attributes[DIALOG_MENU_FORE]); in btn_dialog()
298 set_menu_back(menu, attributes[DIALOG_MENU_BACK]); in btn_dialog()
307 set_menu_win(menu, win); in btn_dialog()
308 set_menu_sub(menu, menu_win); in btn_dialog()
309 set_menu_format(menu, 1, btn_num); in btn_dialog()
310 menu_opts_off(menu, O_SHOWDESC); in btn_dialog()
311 menu_opts_off(menu, O_SHOWMATCH); in btn_dialog()
312 menu_opts_on(menu, O_ONEVALUE); in btn_dialog()
[all …]
Dexpr.h151 struct menu *menu; /* the menu the property are associated with member
167 struct menu { struct
168 struct menu *next; argument
169 struct menu *parent; argument
170 struct menu *list; argument
188 struct menu *target; argument
Dlkc.h99 void menu_warn(struct menu *menu, const char *fmt, ...);
100 struct menu *menu_add_menu(void);
110 void menu_finalize(struct menu *parent);
Dzconf.tab.c_shipped106 static struct menu *current_menu, *current_entry;
195 struct menu *menu;
584 "if_entry", "if_end", "if_stmt", "if_block", "mainmenu_stmt", "menu",
1358 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno);
1359 if (current_menu == (yyvaluep->menu))
1368 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno);
1369 if (current_menu == (yyvaluep->menu))
1378 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno);
1379 if (current_menu == (yyvaluep->menu))
1836 (yyval.menu) = menu_add_menu();
[all …]
Dsymbol.c195 if (prop->menu) in sym_set_changed()
196 prop->menu->flags |= MENU_CHANGED; in sym_set_changed()
1084 struct menu *menu = NULL; in sym_check_print_recursive() local
1111 menu = prop->menu; in sym_check_print_recursive()
1112 if (prop->menu) in sym_check_print_recursive()
1134 menu->file->name, menu->lineno, in sym_check_print_recursive()
1139 menu->file->name, menu->lineno, in sym_check_print_recursive()
Dzconf.gperf16 menu, T_MENU, TF_COMMAND
Dzconf.hash.c_shipped111 char kconf_id_strings_str29[sizeof("menu")];
148 "menu",
/linux-4.4.14/tools/perf/ui/browsers/
Dheader.c31 static int list_menu__run(struct ui_browser *menu) in list_menu__run() argument
42 if (ui_browser__show(menu, "Header information", "Press 'q' to exit") < 0) in list_menu__run()
46 key = ui_browser__run(menu, 0); in list_menu__run()
50 offset = (unsigned long)menu->priv; in list_menu__run()
52 menu->priv = (void *)offset; in list_menu__run()
55 offset = (unsigned long)menu->priv; in list_menu__run()
58 menu->priv = (void *)offset; in list_menu__run()
63 ui_browser__help_window(menu, help); in list_menu__run()
77 ui_browser__hide(menu); in list_menu__run()
83 struct ui_browser menu = { in ui__list_menu() local
[all …]
Dhists.c2110 struct perf_evsel_menu *menu = container_of(browser, in perf_evsel_menu__write() local
2142 menu->lost_events = true; in perf_evsel_menu__write()
2154 menu->selection = evsel; in perf_evsel_menu__write()
2157 static int perf_evsel_menu__run(struct perf_evsel_menu *menu, in perf_evsel_menu__run() argument
2161 struct perf_evlist *evlist = menu->b.priv; in perf_evsel_menu__run()
2167 if (ui_browser__show(&menu->b, title, in perf_evsel_menu__run()
2172 key = ui_browser__run(&menu->b, delay_secs); in perf_evsel_menu__run()
2178 if (!menu->lost_events_warned && menu->lost_events) { in perf_evsel_menu__run()
2179 ui_browser__warn_lost_events(&menu->b); in perf_evsel_menu__run()
2180 menu->lost_events_warned = true; in perf_evsel_menu__run()
[all …]
/linux-4.4.14/scripts/kconfig/lxdialog/
Dmenubox.c105 do_print_item(menu, item_str(), choice, selected, !item_is_tag(':')); \
191 WINDOW *dialog, *menu; in dialog_menu() local
234 menu = subwin(dialog, menu_height, menu_width, in dialog_menu()
236 keypad(menu, TRUE); in dialog_menu()
273 wnoutrefresh(menu); in dialog_menu()
279 wmove(menu, choice, item_x + 1); in dialog_menu()
280 wrefresh(menu); in dialog_menu()
283 key = wgetch(menu); in dialog_menu()
317 do_scroll(menu, &scroll, -1); in dialog_menu()
329 do_scroll(menu, &scroll, 1); in dialog_menu()
[all …]
/linux-4.4.14/tools/perf/ui/tui/
Dutil.c27 static int popup_menu__run(struct ui_browser *menu) in popup_menu__run() argument
31 if (ui_browser__show(menu, " ", "ESC: exit, ENTER|->: Select option") < 0) in popup_menu__run()
35 key = ui_browser__run(menu, 0); in popup_menu__run()
40 key = menu->index; in popup_menu__run()
55 ui_browser__hide(menu); in popup_menu__run()
61 struct ui_browser menu = { in ui__popup_menu() local
69 return popup_menu__run(&menu); in ui__popup_menu()
/linux-4.4.14/drivers/cpuidle/
DKconfig1 menu "CPU Idle"
31 menu "ARM CPU Idle Drivers"
36 menu "MIPS CPU Idle Drivers"
41 menu "POWERPC CPU Idle Drivers"
/linux-4.4.14/arch/arm/mach-w90x900/
DKconfig18 menu "W90P910 Machines"
29 menu "NUC950 Machines"
39 menu "NUC960 Machines"
/linux-4.4.14/arch/unicore32/
DKconfig73 menu "System Type"
127 menu "Bus support"
143 menu "Kernel Features"
168 menu "Boot options"
187 menu "Userspace binary formats"
193 menu "Power management options"
219 menu "PKUnity NetBook-0916 Features"
DKconfig.debug1 menu "Kernel hacking"
/linux-4.4.14/arch/h8300/
DKconfig47 menu "Kernel Features"
55 menu "Executable file formats"
67 menu "Kernel hacking"
DKconfig.cpu25 menu "Processor type and features"
/linux-4.4.14/Documentation/kbuild/
Dkconfig-language.txt48 A menu entry can have a number of attributes. Not all of them are
63 Every menu entry can have at most one prompt, which is used to display
70 Default values are not limited to the menu entry where they are
86 This defines a dependency for this menu entry. If multiple
88 are applied to all other options within this menu entry (which also
101 another symbol. The value of the current menu symbol is used as the
116 - limiting menu display: "visible if" <expr>
117 This attribute is only applicable to menu blocks, if the condition is
118 false, the menu block is not displayed to the user (the symbols
120 similar to a conditional "prompt" attribute for individual menu
[all …]
/linux-4.4.14/drivers/iio/frequency/
DKconfig9 menu "Frequency Synthesizers DDS/PLL"
11 menu "Clock Generator/Distribution"
29 menu "Phase-Locked Loop (PLL) frequency synthesizers"
/linux-4.4.14/arch/score/
DKconfig1 menu "Machine selection"
50 menu "Kernel type"
85 menu "Executable file formats"
DKconfig.debug1 menu "Kernel hacking"
/linux-4.4.14/arch/openrisc/
DKconfig59 menu "Processor type and features"
76 menu "Class II Instructions"
130 menu "Debugging options"
154 menu "Executable file formats"
172 menu "Kernel hacking"
/linux-4.4.14/Documentation/
Dsvga.txt27 ASK_VGA - Display a video mode menu upon startup (see below).
29 0..35 - Menu item number (when you have used the menu to view the list of
30 modes available on your adapter, you can specify the menu item you want
36 0x.... - Hexadecimal video mode ID (also displayed on the menu, see below
42 The ASK_VGA mode causes the kernel to offer a video mode menu upon
45 menu, if you press <SPACE> or wait 30 seconds, the kernel will boot up in
48 The menu looks like:
66 "0 0F00 80x25" means that the first menu item (the menu items are numbered
81 The modes displayed on the menu are partially sorted: The list starts with
104 by entering its mode directly if you know it even if it isn't shown on the menu.
[all …]
/linux-4.4.14/drivers/video/
DKconfig5 menu "Graphics support"
27 menu "Frame buffer Devices"
/linux-4.4.14/arch/blackfin/mach-bf518/
DKconfig9 menu "BF518 Specific Configuration"
95 menu "PORT F"
111 menu "PORT G"
131 menu "PORT H"
138 menu "None-GPIO"
147 menu "Priority"
/linux-4.4.14/arch/blackfin/mach-bf527/
DKconfig9 menu "BF527 Specific Configuration"
92 menu "PORT F"
108 menu "PORT G"
128 menu "PORT H"
138 menu "None-GPIO"
149 menu "Priority"
/linux-4.4.14/arch/m68k/
DKconfig120 menu "Platform setup"
130 menu "Kernel Features"
140 menu "Executable file formats"
147 menu "Power management options"
DKconfig.debug1 menu "Kernel hacking"
DKconfig.devices8 menu "Platform devices"
84 menu "Character devices"
/linux-4.4.14/drivers/iio/proximity/
DKconfig5 menu "Lightning sensors"
21 menu "Proximity sensors"
/linux-4.4.14/arch/x86/um/
DKconfig5 menu "UML-specific options"
7 menu "Host processor type and features"
/linux-4.4.14/Documentation/video4linux/
Dv4l2-controls.txt121 You add non-menu controls by calling v4l2_ctrl_new_std:
127 Menu and integer menu controls are added by calling v4l2_ctrl_new_std_menu:
133 Menu controls with a driver specific menu are added by calling
141 Integer menu controls with a driver specific menu can be added by calling
195 The v4l2_ctrl_new_std_menu function is very similar but it is used for menu
196 controls. There is no min argument since that is always 0 for menu controls,
197 and instead of a step there is a skip_mask argument: if bit X is 1, then menu
200 The v4l2_ctrl_new_int_menu function creates a new standard integer menu
201 control with driver-specific items in the menu. It differs from
204 menu item list.
[all …]
Duvcvideo.txt154 *menu_info Array of menu entries (for menu controls only)
155 __u32 menu_count Number of menu entries (for menu controls only)
/linux-4.4.14/arch/avr32/
DKconfig63 menu "System Type and features"
246 menu "Power management options"
253 menu "CPU Frequency scaling"
259 menu "Bus options"
270 menu "Executable file formats"
DKconfig.debug1 menu "Kernel hacking"
/linux-4.4.14/arch/microblaze/
DKconfig.platform4 # Platform selection Kconfig menu for MicroBlaze targets
7 menu "Platform options"
DKconfig.debug4 menu "Kernel hacking"
DKconfig79 menu "Processor type and features"
131 menu "Kernel features"
260 menu "Executable file formats"
266 menu "Bus Options"
/linux-4.4.14/arch/blackfin/mach-bf533/
DKconfig5 menu "BF533/2/1 Specific Configuration"
8 menu "Priority"
/linux-4.4.14/arch/hexagon/
DKconfig87 menu "Machine selection"
163 menu "Executable File Formats"
172 menu "Kernel hacking"
/linux-4.4.14/drivers/cpuidle/governors/
DMakefile6 obj-$(CONFIG_CPU_IDLE_GOV_MENU) += menu.o
/linux-4.4.14/arch/blackfin/mach-bf537/
DKconfig5 menu "BF537 Specific Configuration"
8 menu "Priority"
/linux-4.4.14/drivers/sh/
DKconfig1 menu "SuperH / SH-Mobile Driver Options"
/linux-4.4.14/arch/nios2/
DKconfig49 menu "Kernel features"
78 menu "Processor type and features"
148 menu "Advanced setup"
197 menu "Executable file formats"
DKconfig.debug1 menu "Kernel hacking"
/linux-4.4.14/drivers/rpmsg/
DKconfig1 menu "Rpmsg drivers"
/linux-4.4.14/Documentation/mn10300/
Dcompartmentalisation.txt20 from the "Processor support" choice menu in the arch/mn10300/Kconfig file.
43 from the "Unit type" choice menu in the arch/mn10300/Kconfig file.
/linux-4.4.14/arch/c6x/
DKconfig101 menu "Processor type and features"
120 menu "Executable file formats"
138 menu "Kernel hacking"
/linux-4.4.14/drivers/net/can/spi/
DKconfig1 menu "CAN SPI interfaces"
/linux-4.4.14/drivers/i2c/algos/
DKconfig5 menu "I2C Algorithms"
/linux-4.4.14/drivers/net/wimax/
DKconfig11 menu "WiMAX Wireless Broadband devices"
/linux-4.4.14/sound/soc/sunxi/
DKconfig1 menu "Allwinner SoC Audio support"
/linux-4.4.14/drivers/perf/
DKconfig5 menu "Performance monitor support"
/linux-4.4.14/drivers/iio/chemical/
DKconfig5 menu "Chemical Sensors"
/linux-4.4.14/fs/
DKconfig5 menu "File systems"
84 menu "Caches"
92 menu "CD-ROM/DVD Filesystems"
101 menu "DOS/FAT/NT Filesystems"
109 menu "Pseudo filesystems"
/linux-4.4.14/arch/blackfin/mach-bf538/
DKconfig5 menu "BF538 Specific Configuration"
8 menu "Priority"
/linux-4.4.14/arch/sparc/
DKconfig.debug1 menu "Kernel hacking"
DKconfig157 menu "Processor type and features"
408 menu "U-Boot options"
442 menu "Bus options (PCI etc.)"
534 menu "Executable file formats"
/linux-4.4.14/drivers/soc/
DKconfig1 menu "SOC (System On Chip) specific Drivers"
/linux-4.4.14/drivers/soc/brcmstb/
DKconfig7 can be enabled individually within this menu.
/linux-4.4.14/arch/ia64/hp/sim/
DKconfig2 menu "HP Simulator drivers"
/linux-4.4.14/arch/arm/mach-iop13xx/
DKconfig3 menu "IOP13XX Implementation Options"
/linux-4.4.14/net/decnet/netfilter/
DKconfig5 menu "DECnet: Netfilter Configuration"
/linux-4.4.14/sound/atmel/
DKconfig1 menu "Atmel devices (AVR32 and AT91)"
/linux-4.4.14/drivers/staging/iio/impedance-analyzer/
DKconfig4 menu "Network Analyzer, Impedance Converters"
/linux-4.4.14/drivers/iio/amplifiers/
DKconfig6 menu "Amplifiers"
/linux-4.4.14/drivers/iio/potentiometer/
DKconfig6 menu "Digital potentiometers"
/linux-4.4.14/arch/arm/mach-dove/
DKconfig3 menu "Marvell Dove Implementations"
/linux-4.4.14/drivers/staging/iio/gyro/
DKconfig4 menu "Digital gyroscope sensors"
/linux-4.4.14/arch/arm/mach-iop33x/
DKconfig3 menu "IOP33x Implementation Options"
/linux-4.4.14/drivers/vlynq/
DKconfig1 menu "TI VLYNQ"
/linux-4.4.14/arch/sh/boards/mach-r2d/
DKconfig3 menu "RTS7751R2D Board Revision"
/linux-4.4.14/arch/parisc/
DKconfig.debug1 menu "Kernel hacking"
/linux-4.4.14/arch/arm/mach-netx/
DKconfig1 menu "NetX Implementations"
/linux-4.4.14/drivers/hid/i2c-hid/
DKconfig1 menu "I2C HID support"
/linux-4.4.14/arch/arc/
DKconfig.debug1 menu "Kernel hacking"
DKconfig86 menu "ARC Architecture Configuration"
88 menu "ARC Platform/SoC/Board"
113 menu "ARC CPU Configuration"
565 menu "Executable file formats"
/linux-4.4.14/arch/mn10300/
DKconfig70 menu "Panasonic MN10300 system setup"
147 menu "Memory layout options"
267 menu "MN10300 internal serial options"
392 menu "Interrupt request priority options"
468 menu "Power management options"
475 menu "Executable formats"
/linux-4.4.14/drivers/fpga/
DKconfig5 menu "FPGA Configuration Support"
/linux-4.4.14/drivers/misc/ti-st/
DKconfig5 menu "Texas Instruments shared transport line discipline"
/linux-4.4.14/arch/sh/drivers/
DKconfig4 menu "Additional SuperH Device Drivers"
/linux-4.4.14/drivers/sn/
DKconfig5 menu "SN Devices"
/linux-4.4.14/arch/mips/bcm63xx/
DKconfig1 menu "CPU support"
/linux-4.4.14/drivers/hv/
DKconfig1 menu "Microsoft Hyper-V guest support"
/linux-4.4.14/arch/arm/mach-mv78xx0/
DKconfig3 menu "Marvell MV78xx0 Implementations"
/linux-4.4.14/drivers/iio/orientation/
DKconfig6 menu "Inclinometer sensors"
/linux-4.4.14/drivers/media/radio/wl128x/
DKconfig4 menu "Texas Instruments WL128x FM driver (ST based)"
/linux-4.4.14/arch/arm/mach-versatile/
DKconfig1 menu "Versatile platform type"
/linux-4.4.14/drivers/staging/iio/frequency/
DKconfig4 menu "Direct Digital Synthesis"
/linux-4.4.14/arch/m32r/
DKconfig.debug1 menu "Kernel hacking"
DKconfig46 menu "Processor type and features"
330 menu "Bus options (PCI, PCMCIA, EISA, MCA, ISA)"
393 menu "Executable file formats"
/linux-4.4.14/arch/avr32/mach-at32ap/
DKconfig3 menu "Atmel AVR32 AP options"
/linux-4.4.14/drivers/iio/common/ssp_sensors/
DKconfig4 menu "SSP Sensor Common"
/linux-4.4.14/arch/metag/
DKconfig61 menu "Processor type and features"
220 menu "Boot options"
262 menu "Power management options"
268 menu "Executable file formats"
DKconfig.debug1 menu "Kernel hacking"
DKconfig.soc33 menu "SoC configuration"
/linux-4.4.14/drivers/idle/
DKconfig12 menu "Memory power savings"
/linux-4.4.14/drivers/hid/usbhid/
DKconfig1 menu "USB HID support"
47 menu "USB HID Boot Protocol drivers"
/linux-4.4.14/arch/arm/mach-gemini/
DKconfig3 menu "Cortina Systems Gemini Implementations"
/linux-4.4.14/drivers/iio/trigger/
DKconfig6 menu "Triggers - standalone"
/linux-4.4.14/arch/arm/firmware/
DKconfig8 menu "Firmware options"
/linux-4.4.14/drivers/gpu/drm/bridge/
DKconfig7 menu "Display Interface Bridges"
/linux-4.4.14/arch/tile/
DKconfig.debug1 menu "Kernel hacking"
/linux-4.4.14/arch/sh/
DKconfig173 menu "System type"
557 menu "Timer and clock configuration"
590 menu "CPU Frequency scaling"
598 menu "Kernel features"
749 menu "Boot options"
823 menu "Bus options"
864 menu "Executable file formats"
870 menu "Power management options (EXPERIMENTAL)"
DKconfig.cpu1 menu "Processor features"
/linux-4.4.14/drivers/gpu/drm/i2c/
DKconfig1 menu "I2C encoder or helper chips"
/linux-4.4.14/drivers/android/
DKconfig1 menu "Android"
/linux-4.4.14/drivers/iio/common/hid-sensors/
DKconfig4 menu "Hid Sensor IIO Common"
/linux-4.4.14/arch/blackfin/mach-bf561/
DKconfig5 menu "BF561 Specific Configuration"
19 menu "Priority"
/linux-4.4.14/Documentation/video4linux/bttv/
DPROBLEMS1 - Start capturing by pressing "c" or by selecting it via a menu!
3 - Start capturing by pressing "c" or by selecting it via a menu!!!
/linux-4.4.14/arch/powerpc/platforms/pasemi/
DKconfig14 menu "PA Semi PWRficient options"
/linux-4.4.14/arch/arm/mach-clps711x/
DKconfig3 menu "CLPS711X/EP721X/EP731X Implementations"
/linux-4.4.14/drivers/mtd/lpddr/
DKconfig1 menu "LPDDR & LPDDR2 PCM memory drivers"
/linux-4.4.14/drivers/staging/iio/magnetometer/
DKconfig4 menu "Magnetometer sensors"
/linux-4.4.14/drivers/firmware/google/
DKconfig10 menu "Google Firmware Drivers"
/linux-4.4.14/arch/arm/mach-hisi/
DKconfig13 menu "Hisilicon platform type"
/linux-4.4.14/arch/s390/
DKconfig.debug1 menu "Kernel hacking"
DKconfig178 menu "Processor type and features"
429 menu "Select NUMA modes"
490 menu "Memory setup"
569 menu "I/O subsystem"
672 menu "Dump support"
689 menu "Executable file formats / Emulations"
712 menu "Power Management"
741 menu "Virtualization"
/linux-4.4.14/arch/sh/cchips/
DKconfig1 menu "Companion Chips"
/linux-4.4.14/net/wimax/
DKconfig17 The different WiMAX drivers can be enabled in the menu entry
/linux-4.4.14/drivers/staging/iio/addac/
DKconfig4 menu "Analog digital bi-direction converters"
/linux-4.4.14/arch/frv/
DKconfig62 menu "Fujitsu FR-V system setup"
196 menu "CPU core support"
351 menu "Power management options"
362 menu "Executable formats"
DKconfig.debug1 menu "Kernel hacking"
/linux-4.4.14/arch/um/
DKconfig.debug1 menu "Kernel hacking"
/linux-4.4.14/drivers/staging/iio/
DKconfig4 menu "IIO staging drivers"
/linux-4.4.14/drivers/staging/iio/cdc/
DKconfig4 menu "Capacitance to digital converters"
/linux-4.4.14/drivers/staging/iio/resolver/
DKconfig4 menu "Resolver to digital converters"
/linux-4.4.14/arch/xtensa/
DKconfig.debug1 menu "Kernel hacking"
DKconfig76 menu "Processor type and features"
280 menu "Bus options"
295 menu "Platform options"
486 menu "Executable file formats"
492 menu "Power management options"
/linux-4.4.14/arch/cris/
DKconfig.debug1 menu "Kernel hacking"
/linux-4.4.14/arch/arm/mach-omap2/
DKconfig1 menu "TI OMAP/AM/DM/DRA Family"
113 menu "TI OMAP2/3/4 Specific Features"
/linux-4.4.14/Documentation/filesystems/
Dbefs.txt72 enable support for experimental code under the "Code maturity level" menu.
74 Then, under the "Filesystems" menu will be an option called "BeFS
/linux-4.4.14/sound/soc/sh/
DKconfig1 menu "SoC Audio support for SuperH"
/linux-4.4.14/drivers/iio/imu/
DKconfig6 menu "Inertial measurement units"
/linux-4.4.14/drivers/net/dsa/
DKconfig1 menu "Distributed Switch Architecture drivers"
/linux-4.4.14/drivers/iio/temperature/
DKconfig4 menu "Temperature sensors"
/linux-4.4.14/arch/arm/mach-iop32x/
DKconfig3 menu "IOP32x Implementation Options"
/linux-4.4.14/drivers/staging/iio/light/
DKconfig4 menu "Light sensors"
/linux-4.4.14/drivers/hwspinlock/
DKconfig9 menu "Hardware Spinlock drivers"
/linux-4.4.14/arch/arm/mach-davinci/
DKconfig14 menu "TI DaVinci Implementations"
148 menu has an effect only in case of a successful UI card detection.
177 menu has an effect only in case of a successful UI card detection.
/linux-4.4.14/arch/arm/mach-integrator/
DKconfig26 menu "Integrator Options"
/linux-4.4.14/arch/s390/kvm/
DKconfig55 # the virtualization menu.
/linux-4.4.14/arch/alpha/
DKconfig.debug1 menu "Kernel hacking"
/linux-4.4.14/drivers/pps/
DKconfig5 menu "PPS support"
/linux-4.4.14/arch/powerpc/platforms/8xx/
DKconfig56 menu "Freescale Ethernet driver platform-specific options"
94 menu "MPC8xx CPM Options"
/linux-4.4.14/arch/blackfin/
DKconfig76 menu "Blackfin Processor Options"
374 menu "Board customizations"
575 menu "Memory Init Control"
662 menu "Clock event device"
674 menu "Clock source"
745 menu "Blackfin Kernel Optimizations"
1123 menu "EBIU_AMGCTL Global Control"
1174 menu "EBIU_AMBCTL Control"
1224 menu "Bus options (PCI, PCMCIA, EISA, MCA, ISA)"
1240 menu "Executable file formats"
[all …]
/linux-4.4.14/arch/arm64/
DKconfig188 menu "Bus support"
212 menu "Kernel Features"
214 menu "ARM errata workarounds via the alternatives framework"
660 menu "ARMv8.1 architectural features"
709 menu "Boot options"
760 menu "Userspace binary formats"
789 menu "Power management options"
798 menu "CPU Power Management"
/linux-4.4.14/drivers/gpu/drm/panel/
DKconfig7 menu "Display Panels"
/linux-4.4.14/net/dccp/
DKconfig29 menu "DCCP Kernel Hacking"
/linux-4.4.14/net/dccp/ccids/
DKconfig1 menu "DCCP CCIDs Configuration"
/linux-4.4.14/block/
DKconfig.iosched3 menu "IO Schedulers"
/linux-4.4.14/drivers/media/usb/uvc/
Duvc_ctrl.c977 struct uvc_menu_info *menu; in __uvc_ctrl_get() local
999 menu = mapping->menu_info; in __uvc_ctrl_get()
1000 for (i = 0; i < mapping->menu_count; ++i, ++menu) { in __uvc_ctrl_get()
1001 if (menu->value == *value) { in __uvc_ctrl_get()
1018 struct uvc_menu_info *menu; in __uvc_query_v4l2_ctrl() local
1062 menu = mapping->menu_info; in __uvc_query_v4l2_ctrl()
1063 for (i = 0; i < mapping->menu_count; ++i, ++menu) { in __uvc_query_v4l2_ctrl()
1064 if (menu->value == v4l2_ctrl->default_value) { in __uvc_query_v4l2_ctrl()
/linux-4.4.14/certs/
DKconfig1 menu "Certificates for signature checking"
/linux-4.4.14/drivers/char/pcmcia/
DKconfig5 menu "PCMCIA character devices"
/linux-4.4.14/drivers/video/fbdev/omap2/displays-new/
DKconfig1 menu "OMAP Display Device Drivers (new device model)"
/linux-4.4.14/drivers/iio/humidity/
DKconfig4 menu "Humidity sensors"
/linux-4.4.14/arch/ia64/
DKconfig.debug1 menu "Kernel hacking"
DKconfig10 menu "Processor type and features"
548 menu "Power management and ACPI options"
555 menu "CPU Frequency scaling"
564 menu "Bus options (PCI, PCMCIA)"
/linux-4.4.14/arch/blackfin/mach-bf548/
DKconfig29 menu "BF548 Specific Configuration"
105 menu "Priority"
/linux-4.4.14/drivers/isdn/i4l/
DKconfig90 menu "ISDN feature submodules"
127 menu "Active cards"
/linux-4.4.14/drivers/media/common/
Dcx2341x.c1167 const char * const *menu = cx2341x_ctrl_get_menu(p, id); in cx2341x_menu_item() local
1170 if (menu == NULL) in cx2341x_menu_item()
1175 while (ctrl.value-- && *menu) menu++; in cx2341x_menu_item()
1176 if (*menu == NULL) in cx2341x_menu_item()
1178 return *menu; in cx2341x_menu_item()
/linux-4.4.14/drivers/staging/android/
DKconfig1 menu "Android"
/linux-4.4.14/drivers/w1/masters/
DKconfig5 menu "1-wire Bus Masters"
/linux-4.4.14/kernel/gcov/
DKconfig1 menu "GCOV-based kernel profiling"
/linux-4.4.14/arch/sh/drivers/dma/
DKconfig1 menu "DMA support"
/linux-4.4.14/arch/powerpc/platforms/cell/
DKconfig46 menu "Cell Broadband Engine options"
/linux-4.4.14/arch/arm/mach-footbridge/
DKconfig3 menu "Footbridge Implementations"
/linux-4.4.14/Documentation/arm/SA1100/
DItsy26 flash menu) Flash the kernel in arch/arm/boot/zImage into 0x08340000
/linux-4.4.14/drivers/bcma/
DKconfig6 menu "Broadcom specific AMBA"
/linux-4.4.14/arch/mips/ath79/
DKconfig3 menu "Atheros AR71XX/AR724X/AR913X machine selection"
/linux-4.4.14/kernel/irq/
DKconfig1 menu "IRQ subsystem"
/linux-4.4.14/drivers/virtio/
DKconfig8 menu "Virtio drivers"
/linux-4.4.14/drivers/rapidio/
DKconfig70 menu "RapidIO Switch drivers"
/linux-4.4.14/drivers/gpio/
DKconfig97 menu "Memory mapped GPIO drivers"
494 menu "Port-mapped I/O GPIO drivers"
569 menu "I2C GPIO expanders"
701 menu "MFD GPIO expanders"
905 menu "PCI GPIO expanders"
988 menu "SPI GPIO expanders"
1013 menu "SPI or I2C GPIO expanders"
1026 menu "USB GPIO expanders"
/linux-4.4.14/drivers/nfc/
DKconfig5 menu "Near Field Communication (NFC) devices"
/linux-4.4.14/drivers/sbus/char/
DKconfig2 menu "Misc Linux/SPARC drivers"
/linux-4.4.14/Documentation/arm/
Duefi.txt29 load the kernel directly from the UEFI shell, boot menu, or one of the
/linux-4.4.14/drivers/net/can/usb/
DKconfig1 menu "CAN USB interfaces"
/linux-4.4.14/drivers/remoteproc/
DKconfig1 menu "Remoteproc drivers"
/linux-4.4.14/drivers/staging/iio/meter/
DKconfig4 menu "Active energy metering IC"
/linux-4.4.14/drivers/i2c/muxes/
DKconfig5 menu "Multiplexer I2C Chip support"
/linux-4.4.14/arch/arm/mach-ks8695/
DKconfig3 menu "Kendin/Micrel KS8695 Implementations"
/linux-4.4.14/drivers/parisc/
DKconfig1 menu "Bus options (PCI, PCMCIA, EISA, GSC, ISA)"
117 menu "PA-RISC specific drivers"
/linux-4.4.14/Documentation/ia64/
Dserial.txt149 "Boot option maintenance" menu. You may have to interrupt the
150 boot sequence to use this menu, and you will have to reset the
/linux-4.4.14/arch/sh/mm/
DKconfig1 menu "Memory management options"
240 menu "Cache configuration"
/linux-4.4.14/drivers/input/
DKconfig5 menu "Input device support"
206 menu "Hardware I/O ports"
/linux-4.4.14/arch/x86/kvm/
DKconfig103 # the virtualization menu.
/linux-4.4.14/drivers/iio/magnetometer/
DKconfig6 menu "Magnetometer sensors"

12