Home | History | Annotate | Download | only in kconfig

Lines Matching full:prop

326 static void get_prompt_str(struct gstr *r, struct property *prop)
331 str_printf(r, "Prompt: %s\n", prop->text);
332 str_printf(r, " Defined at %s:%d\n", prop->menu->file->name,
333 prop->menu->lineno);
334 if (!expr_is_yes(prop->visible.expr)) {
336 expr_gstr_print(prop->visible.expr, r);
339 menu = prop->menu->parent;
360 struct property *prop;
364 for_all_prompts(sym, prop)
365 get_prompt_str(r, prop);
367 for_all_properties(sym, prop, P_SELECT) {
373 expr_gstr_print(prop->expr, r);
428 struct property *prop;
438 prop = menu->prompt;
440 if (prop && menu != current_menu) {
442 switch (prop->type) {