Lines Matching refs:menu
87 * @choice_link: linked to menu::choice_members
181 P_MENU, /* prompt associated with a menu or menuconfig symbol */
194 struct menu *menu; /* the menu the property are associated with
213 M_MENU, // "mainmenu", "menu", "menuconfig"
218 * Represents a node in the menu tree, as seen in e.g. menuconfig (though used
219 * for all front ends). Each symbol, menu, etc. defined in the Kconfig files
223 * @type: type of the menu entry
226 struct menu {
229 /* The next menu node at the same level */
230 struct menu *next;
232 /* The parent menu node, corresponding to e.g. a menu or choice */
233 struct menu *parent;
235 /* The first child menu node, for e.g. menus and choices */
236 struct menu *list;
239 * The symbol associated with the menu node. Choices are implemented as
250 * symbol as well as the text for a menu or comment, along with the
273 /* The location where the menu node appears in the Kconfig files */
282 * Set on a menu node when the corresponding symbol changes state in some way.
292 struct menu *target;