Home
last modified time | relevance | path

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

12

/busybox-1.35.0/scripts/kconfig/
Dmenu.c12 struct menu rootmenu;
13 static struct menu **last_entry_ptr;
18 static void menu_warn(struct menu *menu, const char *fmt, ...) in menu_warn() argument
22 fprintf(stderr, "%s:%d:warning: ", menu->file->name, menu->lineno); in menu_warn()
46 struct menu *menu; in menu_add_entry() local
48 menu = malloc(sizeof(*menu)); in menu_add_entry()
49 memset(menu, 0, sizeof(*menu)); in menu_add_entry()
50 menu->sym = sym; in menu_add_entry()
51 menu->parent = current_menu; in menu_add_entry()
52 menu->file = current_file; in menu_add_entry()
[all …]
Dmconf.c275 static struct menu *current_menu;
280 static void conf(struct menu *menu);
281 static void conf_choice(struct menu *menu);
282 static void conf_string(struct menu *menu);
287 static void show_help(struct menu *menu);
381 struct menu *submenu[8], *menu; in get_prompt_str() local
384 str_printf(r, " Defined at %s:%d\n", prop->menu->file->name, in get_prompt_str()
385 prop->menu->lineno); in get_prompt_str()
391 menu = prop->menu->parent; in get_prompt_str()
392 for (i = 0; menu != &rootmenu && i < 8; menu = menu->parent) in get_prompt_str()
[all …]
Dconf.c19 static void conf(struct menu *menu);
20 static void check_conf(struct menu *menu);
38 static struct menu *rootEntry;
213 int conf_string(struct menu *menu) in conf_string() argument
215 struct symbol *sym = menu->sym; in conf_string()
219 printf("%*s%s ", indent - 1, "", menu->prompt->text); in conf_string()
231 printf("\n%s\n", menu->sym->help ? menu->sym->help : nohelp_text); in conf_string()
244 static int conf_sym(struct menu *menu) in conf_sym() argument
246 struct symbol *sym = menu->sym; in conf_sym()
251 printf("%*s%s ", indent - 1, "", menu->prompt->text); in conf_sym()
[all …]
Dlkc_proto.h9 P(rootmenu,struct menu,);
11 P(menu_is_visible,bool,(struct menu *menu));
12 P(menu_get_prompt,const char *,(struct menu *menu));
13 P(menu_get_root_menu,struct menu *,(struct menu *menu));
14 P(menu_get_parent_menu,struct menu *,(struct menu *menu));
Dqconf.cc102 void ConfigList::updateMenuList(P* parent, struct menu* menu) in updateMenuList() argument
104 struct menu* child; in updateMenuList()
110 if (!menu) { in updateMenuList()
119 for (child = menu->list; child; child = child->next) { in updateMenuList()
138 if (!item || item->menu != child) in updateMenuList()
151 if (item && item->menu == child) { in updateMenuList()
170 sym_set_string_value(menu->sym, text(dataColIdx).latin1()); in okRename()
193 sym = menu->sym; in updateMenu()
194 prop = menu->prompt; in updateMenu()
195 prompt = QString::fromLocal8Bit(menu_get_prompt(menu)); in updateMenu()
[all …]
Dkxgettext.c165 void menu_build_message_list(struct menu *menu) in menu_build_message_list() argument
167 struct menu *child; in menu_build_message_list()
169 message__add(menu_get_prompt(menu), NULL, in menu_build_message_list()
170 menu->file == NULL ? "Root Menu" : menu->file->name, in menu_build_message_list()
171 menu->lineno); in menu_build_message_list()
173 if (menu->sym != NULL && menu->sym->help != NULL) in menu_build_message_list()
174 message__add(menu->sym->help, menu->sym->name, in menu_build_message_list()
175 menu->file == NULL ? "Root Menu" : menu->file->name, in menu_build_message_list()
176 menu->lineno); in menu_build_message_list()
178 for (child = menu->list; child != NULL; child = child->next) in menu_build_message_list()
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);
463 static void text_insert_help(struct menu *menu) in text_insert_help() argument
467 const char *prompt = menu_get_prompt(menu); in text_insert_help()
471 if (!menu->sym) in text_insert_help()
473 else if (menu->sym->help) in text_insert_help()
[all …]
Dzconf.y32 static struct menu *current_menu, *current_entry;
47 struct menu *menu; member
91 %type <menu> if_entry menu_entry choice_entry
324 menu: T_MENU prompt T_EOL
331 menu_entry: menu depends_list
562 void print_symbol(FILE *out, struct menu *menu) in print_symbol() argument
564 struct symbol *sym = menu->sym; in print_symbol()
592 if (prop->menu != menu) in print_symbol()
634 struct menu *menu; in zconfdump() local
636 menu = rootmenu.list; in zconfdump()
[all …]
Dqconf.h80 void setRootMenu(struct menu *menu);
87 void menuSelected(struct menu *menu);
127 void updateMenuList(P*, struct menu*);
137 struct menu *rootEntry;
149 ConfigItem(QListView *parent, ConfigItem *after, struct menu *m, bool v) in ConfigItem()
150 : Parent(parent, after), menu(m), visible(v), goParent(false) in ConfigItem()
154 ConfigItem(ConfigItem *parent, ConfigItem *after, struct menu *m, bool v) in ConfigItem()
155 : Parent(parent, after), menu(m), visible(v), goParent(false) in ConfigItem()
160 : Parent(parent, after), menu(0), visible(v), goParent(true) in ConfigItem()
202 struct menu *menu; variable
[all …]
Dconfdata.c335 struct menu *menu; in conf_write() local
435 menu = rootmenu.list; in conf_write()
436 while (menu) { in conf_write()
437 sym = menu->sym; in conf_write()
439 if (!menu_is_visible(menu)) in conf_write()
441 str = menu_get_prompt(menu); in conf_write()
571 if (menu->list) { in conf_write()
572 menu = menu->list; in conf_write()
575 if (menu->next) in conf_write()
576 menu = menu->next; in conf_write()
[all …]
Dexpr.h113 struct menu *menu; member
127 struct menu { struct
128 struct menu *next; argument
129 struct menu *parent; argument
130 struct menu *list; argument
/busybox-1.35.0/scripts/kconfig/lxdialog/
Dmenubox.c104 do_print_item(menu, items[(index) * 2 + 1], choice, selected, hotkey); \
188 WINDOW *dialog, *menu; in dialog_menu() local
221 menu = subwin(dialog, menu_height, menu_width, in dialog_menu()
223 keypad(menu, TRUE); in dialog_menu()
264 wnoutrefresh(menu); in dialog_menu()
270 wmove(menu, choice, item_x + 1); in dialog_menu()
271 wrefresh(menu); in dialog_menu()
274 key = wgetch(menu); in dialog_menu()
305 do_scroll(menu, &scroll, -1); in dialog_menu()
317 do_scroll(menu, &scroll, 1); in dialog_menu()
[all …]
/busybox-1.35.0/docs/
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
81 This defines a dependency for this menu entry. If multiple
83 are applied to all other options within this menu entry (which also
102 Dependencies define the visibility of a menu entry and can also reduce
130 respectively for calculations). A menu entry becomes visible when it's
144 The position of a menu entry in the tree is determined in two ways. First
147 menu "Network device support"
155 All entries within the "menu" ... "endmenu" block become a submenu of
[all …]
/busybox-1.35.0/runit/
DConfig.src6 menu "Runit Utilities"
/busybox-1.35.0/debianutils/
DConfig.src6 menu "Debian Utilities"
/busybox-1.35.0/console-tools/
DConfig.src6 menu "Console Utilities"
/busybox-1.35.0/printutils/
DConfig.src6 menu "Print Utilities"
/busybox-1.35.0/miscutils/
DConfig.src6 menu "Miscellaneous Utilities"
/busybox-1.35.0/findutils/
DConfig.src6 menu "Finding Utilities"
/busybox-1.35.0/init/
DConfig.src6 menu "Init Utilities"
/busybox-1.35.0/klibc-utils/
DConfig.src6 menu "klibc-utils"
/busybox-1.35.0/sysklogd/
DConfig.src6 menu "System Logging Utilities"
/busybox-1.35.0/selinux/
DConfig.src6 menu "SELinux Utilities"
/busybox-1.35.0/mailutils/
DConfig.src1 menu "Mail Utilities"
/busybox-1.35.0/util-linux/volume_id/
DConfig.src10 menu "Filesystem/Volume identification"

12