Lines Matching refs:symbol
72 void set_all_choice_values(struct symbol *csym);
88 void menu_add_entry(struct symbol *sym);
93 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
123 struct symbol *sym_choice_default(struct symbol *sym);
124 const char *sym_get_string_default(struct symbol *sym);
125 struct symbol *sym_check_deps(struct symbol *sym);
126 struct property *prop_alloc(enum prop_type type, struct symbol *sym);
127 struct symbol *prop_get_symbol(struct property *prop);
129 static inline tristate sym_get_tristate_value(struct symbol *sym) in sym_get_tristate_value()
135 static inline struct symbol *sym_get_choice_value(struct symbol *sym) in sym_get_choice_value()
137 return (struct symbol *)sym->curr.val; in sym_get_choice_value()
140 static inline bool sym_set_choice_value(struct symbol *ch, struct symbol *chval) in sym_set_choice_value()
145 static inline bool sym_is_choice(struct symbol *sym) in sym_is_choice()
150 static inline bool sym_is_choice_value(struct symbol *sym) in sym_is_choice_value()
155 static inline bool sym_is_optional(struct symbol *sym) in sym_is_optional()
160 static inline bool sym_has_value(struct symbol *sym) in sym_has_value()