Lines Matching refs:symbol
80 void menu_add_entry(struct symbol *sym);
86 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
110 void sym_set_changed(struct symbol *sym);
111 struct symbol *sym_check_deps(struct symbol *sym);
112 struct property *prop_alloc(enum prop_type type, struct symbol *sym);
113 struct symbol *prop_get_symbol(struct property *prop);
115 static inline tristate sym_get_tristate_value(struct symbol *sym) in sym_get_tristate_value()
121 static inline struct symbol *sym_get_choice_value(struct symbol *sym) in sym_get_choice_value()
123 return (struct symbol *)sym->curr.val; in sym_get_choice_value()
126 static inline bool sym_set_choice_value(struct symbol *ch, struct symbol *chval) in sym_set_choice_value()
131 static inline bool sym_is_choice(struct symbol *sym) in sym_is_choice()
136 static inline bool sym_is_choice_value(struct symbol *sym) in sym_is_choice_value()
141 static inline bool sym_is_optional(struct symbol *sym) in sym_is_optional()
146 static inline bool sym_has_value(struct symbol *sym) in sym_has_value()