/linux-4.4.14/scripts/kconfig/ |
D | menu.c | 15 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 …]
|
D | lkc_proto.h | 15 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);
|
D | mconf.c | 277 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 …]
|
D | nconf.c | 257 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 …]
|
D | conf.c | 20 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 …]
|
D | qconf.cc | 120 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 …]
|
D | qconf.h | 52 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 …]
|
D | gconf.c | 62 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 …]
|
D | kxgettext.c | 171 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()
|
D | zconf.y | 31 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 …]
|
D | confdata.c | 669 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 …]
|
D | zconf.tab.c | 106 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 …]
|
D | nconf.gui.c | 253 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 …]
|
D | expr.h | 151 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
|
D | lkc.h | 99 void menu_warn(struct menu *menu, const char *fmt, ...); 100 struct menu *menu_add_menu(void); 110 void menu_finalize(struct menu *parent);
|
D | zconf.tab.c_shipped | 106 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 …]
|
D | symbol.c | 195 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()
|
D | zconf.gperf | 16 menu, T_MENU, TF_COMMAND
|
D | zconf.hash.c_shipped | 111 char kconf_id_strings_str29[sizeof("menu")]; 148 "menu",
|
/linux-4.4.14/tools/perf/ui/browsers/ |
D | header.c | 31 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 …]
|
D | hists.c | 2110 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/ |
D | menubox.c | 105 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/ |
D | util.c | 27 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/ |
D | Kconfig | 1 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/ |
D | Kconfig | 18 menu "W90P910 Machines" 29 menu "NUC950 Machines" 39 menu "NUC960 Machines"
|
/linux-4.4.14/arch/unicore32/ |
D | Kconfig | 73 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"
|
D | Kconfig.debug | 1 menu "Kernel hacking"
|
/linux-4.4.14/arch/h8300/ |
D | Kconfig | 47 menu "Kernel Features" 55 menu "Executable file formats" 67 menu "Kernel hacking"
|
D | Kconfig.cpu | 25 menu "Processor type and features"
|
/linux-4.4.14/Documentation/kbuild/ |
D | kconfig-language.txt | 48 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/ |
D | Kconfig | 9 menu "Frequency Synthesizers DDS/PLL" 11 menu "Clock Generator/Distribution" 29 menu "Phase-Locked Loop (PLL) frequency synthesizers"
|
/linux-4.4.14/arch/score/ |
D | Kconfig | 1 menu "Machine selection" 50 menu "Kernel type" 85 menu "Executable file formats"
|
D | Kconfig.debug | 1 menu "Kernel hacking"
|
/linux-4.4.14/arch/openrisc/ |
D | Kconfig | 59 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/ |
D | svga.txt | 27 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/ |
D | Kconfig | 5 menu "Graphics support" 27 menu "Frame buffer Devices"
|
/linux-4.4.14/arch/blackfin/mach-bf518/ |
D | Kconfig | 9 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/ |
D | Kconfig | 9 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/ |
D | Kconfig | 120 menu "Platform setup" 130 menu "Kernel Features" 140 menu "Executable file formats" 147 menu "Power management options"
|
D | Kconfig.debug | 1 menu "Kernel hacking"
|
D | Kconfig.devices | 8 menu "Platform devices" 84 menu "Character devices"
|
/linux-4.4.14/drivers/iio/proximity/ |
D | Kconfig | 5 menu "Lightning sensors" 21 menu "Proximity sensors"
|
/linux-4.4.14/arch/x86/um/ |
D | Kconfig | 5 menu "UML-specific options" 7 menu "Host processor type and features"
|
/linux-4.4.14/Documentation/video4linux/ |
D | v4l2-controls.txt | 121 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 …]
|
D | uvcvideo.txt | 154 *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/ |
D | Kconfig | 63 menu "System Type and features" 246 menu "Power management options" 253 menu "CPU Frequency scaling" 259 menu "Bus options" 270 menu "Executable file formats"
|
D | Kconfig.debug | 1 menu "Kernel hacking"
|
/linux-4.4.14/arch/microblaze/ |
D | Kconfig.platform | 4 # Platform selection Kconfig menu for MicroBlaze targets 7 menu "Platform options"
|
D | Kconfig.debug | 4 menu "Kernel hacking"
|
D | Kconfig | 79 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/ |
D | Kconfig | 5 menu "BF533/2/1 Specific Configuration" 8 menu "Priority"
|
/linux-4.4.14/arch/hexagon/ |
D | Kconfig | 87 menu "Machine selection" 163 menu "Executable File Formats" 172 menu "Kernel hacking"
|
/linux-4.4.14/drivers/cpuidle/governors/ |
D | Makefile | 6 obj-$(CONFIG_CPU_IDLE_GOV_MENU) += menu.o
|
/linux-4.4.14/arch/blackfin/mach-bf537/ |
D | Kconfig | 5 menu "BF537 Specific Configuration" 8 menu "Priority"
|
/linux-4.4.14/drivers/sh/ |
D | Kconfig | 1 menu "SuperH / SH-Mobile Driver Options"
|
/linux-4.4.14/arch/nios2/ |
D | Kconfig | 49 menu "Kernel features" 78 menu "Processor type and features" 148 menu "Advanced setup" 197 menu "Executable file formats"
|
D | Kconfig.debug | 1 menu "Kernel hacking"
|
/linux-4.4.14/drivers/rpmsg/ |
D | Kconfig | 1 menu "Rpmsg drivers"
|
/linux-4.4.14/Documentation/mn10300/ |
D | compartmentalisation.txt | 20 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/ |
D | Kconfig | 101 menu "Processor type and features" 120 menu "Executable file formats" 138 menu "Kernel hacking"
|
/linux-4.4.14/drivers/net/can/spi/ |
D | Kconfig | 1 menu "CAN SPI interfaces"
|
/linux-4.4.14/drivers/i2c/algos/ |
D | Kconfig | 5 menu "I2C Algorithms"
|
/linux-4.4.14/drivers/net/wimax/ |
D | Kconfig | 11 menu "WiMAX Wireless Broadband devices"
|
/linux-4.4.14/sound/soc/sunxi/ |
D | Kconfig | 1 menu "Allwinner SoC Audio support"
|
/linux-4.4.14/drivers/perf/ |
D | Kconfig | 5 menu "Performance monitor support"
|
/linux-4.4.14/drivers/iio/chemical/ |
D | Kconfig | 5 menu "Chemical Sensors"
|
/linux-4.4.14/fs/ |
D | Kconfig | 5 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/ |
D | Kconfig | 5 menu "BF538 Specific Configuration" 8 menu "Priority"
|
/linux-4.4.14/arch/sparc/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
D | Kconfig | 157 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/ |
D | Kconfig | 1 menu "SOC (System On Chip) specific Drivers"
|
/linux-4.4.14/drivers/soc/brcmstb/ |
D | Kconfig | 7 can be enabled individually within this menu.
|
/linux-4.4.14/arch/ia64/hp/sim/ |
D | Kconfig | 2 menu "HP Simulator drivers"
|
/linux-4.4.14/arch/arm/mach-iop13xx/ |
D | Kconfig | 3 menu "IOP13XX Implementation Options"
|
/linux-4.4.14/net/decnet/netfilter/ |
D | Kconfig | 5 menu "DECnet: Netfilter Configuration"
|
/linux-4.4.14/sound/atmel/ |
D | Kconfig | 1 menu "Atmel devices (AVR32 and AT91)"
|
/linux-4.4.14/drivers/staging/iio/impedance-analyzer/ |
D | Kconfig | 4 menu "Network Analyzer, Impedance Converters"
|
/linux-4.4.14/drivers/iio/amplifiers/ |
D | Kconfig | 6 menu "Amplifiers"
|
/linux-4.4.14/drivers/iio/potentiometer/ |
D | Kconfig | 6 menu "Digital potentiometers"
|
/linux-4.4.14/arch/arm/mach-dove/ |
D | Kconfig | 3 menu "Marvell Dove Implementations"
|
/linux-4.4.14/drivers/staging/iio/gyro/ |
D | Kconfig | 4 menu "Digital gyroscope sensors"
|
/linux-4.4.14/arch/arm/mach-iop33x/ |
D | Kconfig | 3 menu "IOP33x Implementation Options"
|
/linux-4.4.14/drivers/vlynq/ |
D | Kconfig | 1 menu "TI VLYNQ"
|
/linux-4.4.14/arch/sh/boards/mach-r2d/ |
D | Kconfig | 3 menu "RTS7751R2D Board Revision"
|
/linux-4.4.14/arch/parisc/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
/linux-4.4.14/arch/arm/mach-netx/ |
D | Kconfig | 1 menu "NetX Implementations"
|
/linux-4.4.14/drivers/hid/i2c-hid/ |
D | Kconfig | 1 menu "I2C HID support"
|
/linux-4.4.14/arch/arc/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
D | Kconfig | 86 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/ |
D | Kconfig | 70 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/ |
D | Kconfig | 5 menu "FPGA Configuration Support"
|
/linux-4.4.14/drivers/misc/ti-st/ |
D | Kconfig | 5 menu "Texas Instruments shared transport line discipline"
|
/linux-4.4.14/arch/sh/drivers/ |
D | Kconfig | 4 menu "Additional SuperH Device Drivers"
|
/linux-4.4.14/drivers/sn/ |
D | Kconfig | 5 menu "SN Devices"
|
/linux-4.4.14/arch/mips/bcm63xx/ |
D | Kconfig | 1 menu "CPU support"
|
/linux-4.4.14/drivers/hv/ |
D | Kconfig | 1 menu "Microsoft Hyper-V guest support"
|
/linux-4.4.14/arch/arm/mach-mv78xx0/ |
D | Kconfig | 3 menu "Marvell MV78xx0 Implementations"
|
/linux-4.4.14/drivers/iio/orientation/ |
D | Kconfig | 6 menu "Inclinometer sensors"
|
/linux-4.4.14/drivers/media/radio/wl128x/ |
D | Kconfig | 4 menu "Texas Instruments WL128x FM driver (ST based)"
|
/linux-4.4.14/arch/arm/mach-versatile/ |
D | Kconfig | 1 menu "Versatile platform type"
|
/linux-4.4.14/drivers/staging/iio/frequency/ |
D | Kconfig | 4 menu "Direct Digital Synthesis"
|
/linux-4.4.14/arch/m32r/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
D | Kconfig | 46 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/ |
D | Kconfig | 3 menu "Atmel AVR32 AP options"
|
/linux-4.4.14/drivers/iio/common/ssp_sensors/ |
D | Kconfig | 4 menu "SSP Sensor Common"
|
/linux-4.4.14/arch/metag/ |
D | Kconfig | 61 menu "Processor type and features" 220 menu "Boot options" 262 menu "Power management options" 268 menu "Executable file formats"
|
D | Kconfig.debug | 1 menu "Kernel hacking"
|
D | Kconfig.soc | 33 menu "SoC configuration"
|
/linux-4.4.14/drivers/idle/ |
D | Kconfig | 12 menu "Memory power savings"
|
/linux-4.4.14/drivers/hid/usbhid/ |
D | Kconfig | 1 menu "USB HID support" 47 menu "USB HID Boot Protocol drivers"
|
/linux-4.4.14/arch/arm/mach-gemini/ |
D | Kconfig | 3 menu "Cortina Systems Gemini Implementations"
|
/linux-4.4.14/drivers/iio/trigger/ |
D | Kconfig | 6 menu "Triggers - standalone"
|
/linux-4.4.14/arch/arm/firmware/ |
D | Kconfig | 8 menu "Firmware options"
|
/linux-4.4.14/drivers/gpu/drm/bridge/ |
D | Kconfig | 7 menu "Display Interface Bridges"
|
/linux-4.4.14/arch/tile/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
/linux-4.4.14/arch/sh/ |
D | Kconfig | 173 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)"
|
D | Kconfig.cpu | 1 menu "Processor features"
|
/linux-4.4.14/drivers/gpu/drm/i2c/ |
D | Kconfig | 1 menu "I2C encoder or helper chips"
|
/linux-4.4.14/drivers/android/ |
D | Kconfig | 1 menu "Android"
|
/linux-4.4.14/drivers/iio/common/hid-sensors/ |
D | Kconfig | 4 menu "Hid Sensor IIO Common"
|
/linux-4.4.14/arch/blackfin/mach-bf561/ |
D | Kconfig | 5 menu "BF561 Specific Configuration" 19 menu "Priority"
|
/linux-4.4.14/Documentation/video4linux/bttv/ |
D | PROBLEMS | 1 - 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/ |
D | Kconfig | 14 menu "PA Semi PWRficient options"
|
/linux-4.4.14/arch/arm/mach-clps711x/ |
D | Kconfig | 3 menu "CLPS711X/EP721X/EP731X Implementations"
|
/linux-4.4.14/drivers/mtd/lpddr/ |
D | Kconfig | 1 menu "LPDDR & LPDDR2 PCM memory drivers"
|
/linux-4.4.14/drivers/staging/iio/magnetometer/ |
D | Kconfig | 4 menu "Magnetometer sensors"
|
/linux-4.4.14/drivers/firmware/google/ |
D | Kconfig | 10 menu "Google Firmware Drivers"
|
/linux-4.4.14/arch/arm/mach-hisi/ |
D | Kconfig | 13 menu "Hisilicon platform type"
|
/linux-4.4.14/arch/s390/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
D | Kconfig | 178 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/ |
D | Kconfig | 1 menu "Companion Chips"
|
/linux-4.4.14/net/wimax/ |
D | Kconfig | 17 The different WiMAX drivers can be enabled in the menu entry
|
/linux-4.4.14/drivers/staging/iio/addac/ |
D | Kconfig | 4 menu "Analog digital bi-direction converters"
|
/linux-4.4.14/arch/frv/ |
D | Kconfig | 62 menu "Fujitsu FR-V system setup" 196 menu "CPU core support" 351 menu "Power management options" 362 menu "Executable formats"
|
D | Kconfig.debug | 1 menu "Kernel hacking"
|
/linux-4.4.14/arch/um/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
/linux-4.4.14/drivers/staging/iio/ |
D | Kconfig | 4 menu "IIO staging drivers"
|
/linux-4.4.14/drivers/staging/iio/cdc/ |
D | Kconfig | 4 menu "Capacitance to digital converters"
|
/linux-4.4.14/drivers/staging/iio/resolver/ |
D | Kconfig | 4 menu "Resolver to digital converters"
|
/linux-4.4.14/arch/xtensa/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
D | Kconfig | 76 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/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
/linux-4.4.14/arch/arm/mach-omap2/ |
D | Kconfig | 1 menu "TI OMAP/AM/DM/DRA Family" 113 menu "TI OMAP2/3/4 Specific Features"
|
/linux-4.4.14/Documentation/filesystems/ |
D | befs.txt | 72 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/ |
D | Kconfig | 1 menu "SoC Audio support for SuperH"
|
/linux-4.4.14/drivers/iio/imu/ |
D | Kconfig | 6 menu "Inertial measurement units"
|
/linux-4.4.14/drivers/net/dsa/ |
D | Kconfig | 1 menu "Distributed Switch Architecture drivers"
|
/linux-4.4.14/drivers/iio/temperature/ |
D | Kconfig | 4 menu "Temperature sensors"
|
/linux-4.4.14/arch/arm/mach-iop32x/ |
D | Kconfig | 3 menu "IOP32x Implementation Options"
|
/linux-4.4.14/drivers/staging/iio/light/ |
D | Kconfig | 4 menu "Light sensors"
|
/linux-4.4.14/drivers/hwspinlock/ |
D | Kconfig | 9 menu "Hardware Spinlock drivers"
|
/linux-4.4.14/arch/arm/mach-davinci/ |
D | Kconfig | 14 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/ |
D | Kconfig | 26 menu "Integrator Options"
|
/linux-4.4.14/arch/s390/kvm/ |
D | Kconfig | 55 # the virtualization menu.
|
/linux-4.4.14/arch/alpha/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
/linux-4.4.14/drivers/pps/ |
D | Kconfig | 5 menu "PPS support"
|
/linux-4.4.14/arch/powerpc/platforms/8xx/ |
D | Kconfig | 56 menu "Freescale Ethernet driver platform-specific options" 94 menu "MPC8xx CPM Options"
|
/linux-4.4.14/arch/blackfin/ |
D | Kconfig | 76 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/ |
D | Kconfig | 188 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/ |
D | Kconfig | 7 menu "Display Panels"
|
/linux-4.4.14/net/dccp/ |
D | Kconfig | 29 menu "DCCP Kernel Hacking"
|
/linux-4.4.14/net/dccp/ccids/ |
D | Kconfig | 1 menu "DCCP CCIDs Configuration"
|
/linux-4.4.14/block/ |
D | Kconfig.iosched | 3 menu "IO Schedulers"
|
/linux-4.4.14/drivers/media/usb/uvc/ |
D | uvc_ctrl.c | 977 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/ |
D | Kconfig | 1 menu "Certificates for signature checking"
|
/linux-4.4.14/drivers/char/pcmcia/ |
D | Kconfig | 5 menu "PCMCIA character devices"
|
/linux-4.4.14/drivers/video/fbdev/omap2/displays-new/ |
D | Kconfig | 1 menu "OMAP Display Device Drivers (new device model)"
|
/linux-4.4.14/drivers/iio/humidity/ |
D | Kconfig | 4 menu "Humidity sensors"
|
/linux-4.4.14/arch/ia64/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
D | Kconfig | 10 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/ |
D | Kconfig | 29 menu "BF548 Specific Configuration" 105 menu "Priority"
|
/linux-4.4.14/drivers/isdn/i4l/ |
D | Kconfig | 90 menu "ISDN feature submodules" 127 menu "Active cards"
|
/linux-4.4.14/drivers/media/common/ |
D | cx2341x.c | 1167 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/ |
D | Kconfig | 1 menu "Android"
|
/linux-4.4.14/drivers/w1/masters/ |
D | Kconfig | 5 menu "1-wire Bus Masters"
|
/linux-4.4.14/kernel/gcov/ |
D | Kconfig | 1 menu "GCOV-based kernel profiling"
|
/linux-4.4.14/arch/sh/drivers/dma/ |
D | Kconfig | 1 menu "DMA support"
|
/linux-4.4.14/arch/powerpc/platforms/cell/ |
D | Kconfig | 46 menu "Cell Broadband Engine options"
|
/linux-4.4.14/arch/arm/mach-footbridge/ |
D | Kconfig | 3 menu "Footbridge Implementations"
|
/linux-4.4.14/Documentation/arm/SA1100/ |
D | Itsy | 26 flash menu) Flash the kernel in arch/arm/boot/zImage into 0x08340000
|
/linux-4.4.14/drivers/bcma/ |
D | Kconfig | 6 menu "Broadcom specific AMBA"
|
/linux-4.4.14/arch/mips/ath79/ |
D | Kconfig | 3 menu "Atheros AR71XX/AR724X/AR913X machine selection"
|
/linux-4.4.14/kernel/irq/ |
D | Kconfig | 1 menu "IRQ subsystem"
|
/linux-4.4.14/drivers/virtio/ |
D | Kconfig | 8 menu "Virtio drivers"
|
/linux-4.4.14/drivers/rapidio/ |
D | Kconfig | 70 menu "RapidIO Switch drivers"
|
/linux-4.4.14/drivers/gpio/ |
D | Kconfig | 97 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/ |
D | Kconfig | 5 menu "Near Field Communication (NFC) devices"
|
/linux-4.4.14/drivers/sbus/char/ |
D | Kconfig | 2 menu "Misc Linux/SPARC drivers"
|
/linux-4.4.14/Documentation/arm/ |
D | uefi.txt | 29 load the kernel directly from the UEFI shell, boot menu, or one of the
|
/linux-4.4.14/drivers/net/can/usb/ |
D | Kconfig | 1 menu "CAN USB interfaces"
|
/linux-4.4.14/drivers/remoteproc/ |
D | Kconfig | 1 menu "Remoteproc drivers"
|
/linux-4.4.14/drivers/staging/iio/meter/ |
D | Kconfig | 4 menu "Active energy metering IC"
|
/linux-4.4.14/drivers/i2c/muxes/ |
D | Kconfig | 5 menu "Multiplexer I2C Chip support"
|
/linux-4.4.14/arch/arm/mach-ks8695/ |
D | Kconfig | 3 menu "Kendin/Micrel KS8695 Implementations"
|
/linux-4.4.14/drivers/parisc/ |
D | Kconfig | 1 menu "Bus options (PCI, PCMCIA, EISA, GSC, ISA)" 117 menu "PA-RISC specific drivers"
|
/linux-4.4.14/Documentation/ia64/ |
D | serial.txt | 149 "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/ |
D | Kconfig | 1 menu "Memory management options" 240 menu "Cache configuration"
|
/linux-4.4.14/drivers/input/ |
D | Kconfig | 5 menu "Input device support" 206 menu "Hardware I/O ports"
|
/linux-4.4.14/arch/x86/kvm/ |
D | Kconfig | 103 # the virtualization menu.
|
/linux-4.4.14/drivers/iio/magnetometer/ |
D | Kconfig | 6 menu "Magnetometer sensors"
|