Lines Matching refs:sym
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);
115 static inline tristate sym_get_tristate_value(struct symbol *sym) in sym_get_tristate_value() argument
117 return sym->curr.tri; in sym_get_tristate_value()
121 static inline struct symbol *sym_get_choice_value(struct symbol *sym) in sym_get_choice_value() argument
123 return (struct symbol *)sym->curr.val; in sym_get_choice_value()
131 static inline bool sym_is_choice(struct symbol *sym) in sym_is_choice() argument
133 return sym->flags & SYMBOL_CHOICE ? true : false; in sym_is_choice()
136 static inline bool sym_is_choice_value(struct symbol *sym) in sym_is_choice_value() argument
138 return sym->flags & SYMBOL_CHOICEVAL ? true : false; in sym_is_choice_value()
141 static inline bool sym_is_optional(struct symbol *sym) in sym_is_optional() argument
143 return sym->flags & SYMBOL_OPTIONAL ? true : false; in sym_is_optional()
146 static inline bool sym_has_value(struct symbol *sym) in sym_has_value() argument
148 return sym->flags & SYMBOL_DEF_USER ? true : false; in sym_has_value()