/hal_espressif-3.4.0/tools/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 | 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 | 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 | 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 | 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 | conf.c | 21 static void conf(struct menu *menu); 22 static void check_conf(struct menu *menu); 46 static struct menu *rootEntry; 48 static void print_help(struct menu *menu) in print_help() argument 52 menu_get_ext_help(menu, &help); in print_help() 134 static int conf_string(struct menu *menu) in conf_string() argument 136 struct symbol *sym = menu->sym; in conf_string() 140 printf("%*s%s ", indent - 1, "", _(menu->prompt->text)); in conf_string() 153 print_help(menu); in conf_string() 167 static int conf_sym(struct menu *menu) in conf_sym() argument [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 | 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 | zconf.y | 32 static struct menu *current_menu, *current_entry; 43 struct menu *menu; member 94 %type <menu> if_entry menu_entry choice_entry 367 menu: T_MENU prompt T_EOL 374 menu_entry: menu visibility_list depends_list 628 static void print_symbol(FILE *out, struct menu *menu) in print_symbol() argument 630 struct symbol *sym = menu->sym; in print_symbol() 658 if (prop->menu != menu) in print_symbol() 702 if (menu->help) { in print_symbol() 703 int len = strlen(menu->help); in print_symbol() [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 | confdata.c | 661 struct menu *menu; in conf_write_defconfig() local 671 menu = rootmenu.list; in conf_write_defconfig() 673 while (menu != NULL) in conf_write_defconfig() 675 sym = menu->sym; in conf_write_defconfig() 677 if (!menu_is_visible(menu)) in conf_write_defconfig() 713 if (menu->list != NULL) { in conf_write_defconfig() 714 menu = menu->list; in conf_write_defconfig() 716 else if (menu->next != NULL) { in conf_write_defconfig() 717 menu = menu->next; in conf_write_defconfig() 719 while ((menu = menu->parent)) { in conf_write_defconfig() [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 | 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 …]
|
D | lkc.h | 101 void menu_warn(struct menu *menu, const char *fmt, ...); 102 struct menu *menu_add_menu(void); 112 void menu_finalize(struct menu *parent);
|
/hal_espressif-3.4.0/tools/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 …]
|
/hal_espressif-3.4.0/components/bt/ |
D | Kconfig | 1 menu "Bluetooth" 16 menu "Bluetooth controller" 49 menu "Bluedroid Options" 54 menu "NimBLE Options"
|
/hal_espressif-3.4.0/components/tinyusb/ |
D | Kconfig | 1 menu "TinyUSB Stack" 20 menu "TinyUSB task configuration" 43 menu "Descriptor configuration" 117 menu "Massive Storage Class (MSC)" 132 menu "Communication Device Class (CDC)"
|
/hal_espressif-3.4.0/examples/peripherals/i2s/i2s_audio_recorder_sdcard/main/ |
D | Kconfig.projbuild | 1 menu "Example Configuration" 3 menu "SDCard Configuration" 31 menu "I2S MEMS MIC Configuration"
|
/hal_espressif-3.4.0/components/driver/ |
D | Kconfig | 1 menu "Driver configurations" 3 menu "ADC configuration" 24 menu "MCPWM configuration" 38 menu "SPI configuration" 88 menu "TWAI configuration" 148 menu "UART configuration" 159 menu "RTCIO configuration" 173 menu "GPIO Configuration" 187 menu "GDMA Configuration"
|
/hal_espressif-3.4.0/tools/test_apps/peripherals/i2c_wifi/main/ |
D | Kconfig.projbuild | 1 menu "Test Configuration" 13 menu "I2C Configuration" 55 menu "WiFi softAP Configuration"
|
/hal_espressif-3.4.0/examples/peripherals/i2c/i2c_self_test/main/ |
D | Kconfig.projbuild | 1 menu "Example Configuration" 3 menu "I2C Master" 34 menu "I2C Slave" 60 menu "BH1750 Sensor"
|
/hal_espressif-3.4.0/examples/storage/sd_card/sdmmc/main/ |
D | Kconfig.projbuild | 1 menu "SD Card Example menu"
|
/hal_espressif-3.4.0/examples/storage/sd_card/sdspi/main/ |
D | Kconfig.projbuild | 1 menu "SD Card Example menu"
|
/hal_espressif-3.4.0/examples/system/heap_task_tracking/ |
D | README.md | 13 To change the `Heap Corruption Detection level`, open the project configuration menu (`idf.py menuc… 15 Navigate to `Component config -> Heap memory debugging` menu. In `Heap corruption detection` menu s…
|