Lines Matching refs:symbol
44 void set_all_choice_values(struct symbol *csym);
86 void menu_add_entry(struct symbol *sym);
91 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
105 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head);
110 struct symbol *sym_choice_default(struct symbol *sym);
111 struct property *sym_get_range_prop(struct symbol *sym);
112 const char *sym_get_string_default(struct symbol *sym);
113 struct symbol *sym_check_deps(struct symbol *sym);
114 struct symbol *prop_get_symbol(struct property *prop);
116 static inline tristate sym_get_tristate_value(struct symbol *sym) in sym_get_tristate_value()
122 static inline struct symbol *sym_get_choice_value(struct symbol *sym) in sym_get_choice_value()
124 return (struct symbol *)sym->curr.val; in sym_get_choice_value()
127 static inline bool sym_set_choice_value(struct symbol *ch, struct symbol *chval) in sym_set_choice_value()
132 static inline bool sym_is_choice(struct symbol *sym) in sym_is_choice()
137 static inline bool sym_is_choice_value(struct symbol *sym) in sym_is_choice_value()
142 static inline bool sym_is_optional(struct symbol *sym) in sym_is_optional()
147 static inline bool sym_has_value(struct symbol *sym) in sym_has_value()