Lines Matching defs:menu
180 P_MENU, /* prompt associated with a menu or menuconfig symbol */
195 struct menu *menu; /* the menu the property are associated with
212 * Represents a node in the menu tree, as seen in e.g. menuconfig (though used
213 * for all front ends). Each symbol, menu, etc. defined in the Kconfig files
217 struct menu {
218 /* The next menu node at the same level */
219 struct menu *next;
221 /* The parent menu node, corresponding to e.g. a menu or choice */
222 struct menu *parent;
224 /* The first child menu node, for e.g. menus and choices */
225 struct menu *list;
228 * The symbol associated with the menu node. Choices are implemented as
235 * symbol as well as the text for a menu or comment, along with the
258 /* The location where the menu node appears in the Kconfig files */
267 * Set on a menu node when the corresponding symbol changes state in some way.
277 struct menu *target;