| /utopia/UTPA2-700.0.x/projects/build/scripts/kconfig/ |
| H A 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 = malloc(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 …]
|
| H A D | nconf.c | 266 static struct menu *current_menu; 283 static void conf(struct menu *menu); 284 static void conf_choice(struct menu *menu); 285 static void conf_string(struct menu *menu); 288 static void show_help(struct menu *menu); 293 typedef void (*function_key_handler_t)(int *key, struct menu *menu); 294 static void handle_f1(int *key, struct menu *current_item); 295 static void handle_f2(int *key, struct menu *current_item); 296 static void handle_f3(int *key, struct menu *current_item); 297 static void handle_f4(int *key, struct menu *current_item); [all …]
|
| H A D | qconf.cc | 107 sym_set_string_value(menu->sym, text(dataColIdx).latin1()); in okRename() 130 sym = menu->sym; in updateMenu() 131 prop = menu->prompt; in updateMenu() 132 prompt = _(menu_get_prompt(menu)); in updateMenu() 140 if (sym && list->rootEntry == menu) in updateMenu() 234 if (!menu) in testUpdateMenu() 237 sym_calc_value(menu->sym); in testUpdateMenu() 238 if (menu->flags & MENU_CHANGED) { in testUpdateMenu() 240 menu->flags &= ~MENU_CHANGED; in testUpdateMenu() 241 for (i = (ConfigItem*)menu->data; i; i = i->nextItem) in testUpdateMenu() [all …]
|
| H A D | mconf.c | 272 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); 284 static void show_help(struct menu *menu); 338 static void build_conf(struct menu *menu) in build_conf() argument 342 struct menu *child; in build_conf() 352 visible = menu_is_visible(menu); in build_conf() 353 if (show_all_options && !menu_has_prompt(menu)) in build_conf() 358 sym = menu->sym; in build_conf() [all …]
|
| H A 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); 395 static void text_insert_help(struct menu *menu) in text_insert_help() argument 399 const char *prompt = _(menu_get_prompt(menu)); in text_insert_help() 402 menu_get_ext_help(menu, &help); in text_insert_help() 814 struct menu *menu; in renderer_edited() local [all …]
|
| H A 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() 130 static int conf_string(struct menu *menu) in conf_string() argument 132 struct symbol *sym = menu->sym; in conf_string() 136 printf("%*s%s ", indent - 1, "", _(menu->prompt->text)); in conf_string() 149 print_help(menu); in conf_string() 162 static int conf_sym(struct menu *menu) in conf_sym() argument [all …]
|
| H A D | zconf.y | 32 static struct menu *current_menu, *current_entry; 47 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 615 static void print_symbol(FILE *out, struct menu *menu) in print_symbol() argument 617 struct symbol *sym = menu->sym; in print_symbol() 645 if (prop->menu != menu) in print_symbol() 689 if (menu->help) { in print_symbol() 690 int len = strlen(menu->help); in print_symbol() [all …]
|
| H A D | zconf.tab.c | 109 static struct menu *current_menu, *current_entry; 190 struct menu *menu; member 1309 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno); 1310 if (current_menu == (yyvaluep->menu)) 1319 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno); 1320 if (current_menu == (yyvaluep->menu)) 1329 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno); 1330 if (current_menu == (yyvaluep->menu)) 1789 (yyval.menu) = menu_add_menu(); 1850 (yyval.menu) = menu_add_menu(); [all …]
|
| H A D | confdata.c | 485 struct menu *menu; in conf_write_defconfig() local 495 menu = rootmenu.list; in conf_write_defconfig() 497 while (menu != NULL) in conf_write_defconfig() 499 sym = menu->sym; in conf_write_defconfig() 501 if (!menu_is_visible(menu)) in conf_write_defconfig() 537 if (menu->list != NULL) { in conf_write_defconfig() 538 menu = menu->list; in conf_write_defconfig() 540 else if (menu->next != NULL) { in conf_write_defconfig() 541 menu = menu->next; in conf_write_defconfig() 543 while ((menu = menu->parent)) { in conf_write_defconfig() [all …]
|
| H A D | qconf.h | 59 ConfigItem* findConfigItem(struct menu *); 71 void setRootMenu(struct menu *menu); 79 void menuChanged(struct menu *menu); 80 void menuSelected(struct menu *menu); 82 void gotFocus(struct menu *); 119 bool menuSkip(struct menu *); 122 void updateMenuList(P*, struct menu*); 133 struct menu *rootEntry; 146 ConfigItem(Q3ListView *parent, ConfigItem *after, struct menu *m, bool v) in ConfigItem() 147 : Parent(parent, after), menu(m), visible(v), goParent(false) in ConfigItem() [all …]
|
| H A D | lkc_proto.h | 15 P(rootmenu,struct menu,); 17 P(menu_is_visible, bool, (struct menu *menu)); 18 P(menu_has_prompt, bool, (struct menu *menu)); 19 P(menu_get_prompt,const char *,(struct menu *menu)); 20 P(menu_get_root_menu,struct menu *,(struct menu *menu)); 21 P(menu_get_parent_menu,struct menu *,(struct menu *menu)); 22 P(menu_has_help,bool,(struct menu *menu)); 23 P(menu_get_help,const char *,(struct menu *menu)); 26 P(menu_get_ext_help,void,(struct menu *menu, struct gstr *help));
|
| H A D | kxgettext.c | 172 static void menu_build_message_list(struct menu *menu) in menu_build_message_list() argument 174 struct menu *child; in menu_build_message_list() 176 message__add(menu_get_prompt(menu), NULL, in menu_build_message_list() 177 menu->file == NULL ? "Root Menu" : menu->file->name, in menu_build_message_list() 178 menu->lineno); in menu_build_message_list() 180 if (menu->sym != NULL && menu_has_help(menu)) in menu_build_message_list() 181 message__add(menu_get_help(menu), menu->sym->name, in menu_build_message_list() 182 menu->file == NULL ? "Root Menu" : menu->file->name, in menu_build_message_list() 183 menu->lineno); in menu_build_message_list() 185 for (child = menu->list; child != NULL; child = child->next) in menu_build_message_list()
|
| H A 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 …]
|
| H A D | zconf.tab.c_shipped | 109 static struct menu *current_menu, *current_entry; 190 struct menu *menu; 570 "if_entry", "if_end", "if_stmt", "if_block", "mainmenu_stmt", "menu", 1309 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno); 1310 if (current_menu == (yyvaluep->menu)) 1319 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno); 1320 if (current_menu == (yyvaluep->menu)) 1329 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno); 1330 if (current_menu == (yyvaluep->menu)) 1789 (yyval.menu) = menu_add_menu(); [all …]
|
| H A D | symbol.c | 442 if (prop->menu) in sym_set_changed() 443 prop->menu->flags |= MENU_CHANGED; in sym_set_changed() 972 struct menu *menu = NULL; in sym_check_print_recursive() local 999 menu = prop->menu; in sym_check_print_recursive() 1000 if (prop->menu) in sym_check_print_recursive() 1020 menu->file->name, menu->lineno, in sym_check_print_recursive() 1025 menu->file->name, menu->lineno, in sym_check_print_recursive()
|
| H A D | expr.h | 141 struct menu *menu; /* the menu the property are associated with member 157 struct menu { struct 158 struct menu *next; argument 159 struct menu *parent; argument 160 struct menu *list; argument
|
| H A D | lkc.h | 107 void menu_warn(struct menu *menu, const char *fmt, ...); 108 struct menu *menu_add_menu(void); 119 void menu_finalize(struct menu *parent);
|
| H A D | zconf.hash.c_shipped | 113 char kconf_id_strings_str29[sizeof("menu")]; 148 "menu",
|
| H A D | zconf.gperf | 16 menu, T_MENU, TF_COMMAND keyword
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/kconfig/lxdialog/ |
| H A D | menubox.c | 105 do_print_item(menu, item_str(), choice, selected, !item_is_tag(':')); \ 189 WINDOW *dialog, *menu; in dialog_menu() local 232 menu = subwin(dialog, menu_height, menu_width, in dialog_menu() 234 keypad(menu, TRUE); in dialog_menu() 271 wnoutrefresh(menu); in dialog_menu() 277 wmove(menu, choice, item_x + 1); in dialog_menu() 278 wrefresh(menu); in dialog_menu() 281 key = wgetch(menu); in dialog_menu() 314 do_scroll(menu, &scroll, -1); in dialog_menu() 326 do_scroll(menu, &scroll, 1); in dialog_menu() [all …]
|
| /utopia/UTPA2-700.0.x/projects/build/ |
| H A D | Kconfig | 275 menu "Utopia Platform Configuration" 625 menu "General Setup" 653 menu "Build Options"
|
| H A D | README | 25 …b. make menuconfig (If you entered the menu, choose what want, and then exit. The menuconfig syste…
|
| /utopia/UTPA2-700.0.x/modules/msos/utopia_core/ |
| H A D | Kconfig | 5 menu "Utoipa framework"
|
| /utopia/UTPA2-700.0.x/mxlib/api/ |
| H A D | Kconfig | 3 menu "Utopia API Library Selection"
|
| /utopia/UTPA2-700.0.x/mxlib/drv/ |
| H A D | Kconfig | 3 menu "Utopia Drviver Library Selection"
|