Lines Matching refs:symbol

17 struct symbol symbol_yes = {
25 struct symbol symbol_mod = {
33 struct symbol symbol_no = {
41 struct symbol *modules_sym;
45 enum symbol_type sym_get_type(const struct symbol *sym) in sym_get_type()
80 struct menu *sym_get_prompt_menu(const struct symbol *sym) in sym_get_prompt_menu()
98 struct menu *sym_get_choice_menu(const struct symbol *sym) in sym_get_choice_menu()
120 static struct property *sym_get_default_prop(struct symbol *sym) in sym_get_default_prop()
132 struct property *sym_get_range_prop(struct symbol *sym) in sym_get_range_prop()
144 static long long sym_get_range_val(struct symbol *sym, int base) in sym_get_range_val()
160 static void sym_validate_range(struct symbol *sym) in sym_validate_range()
163 struct symbol *range_sym; in sym_validate_range()
192 static void sym_set_changed(struct symbol *sym) in sym_set_changed()
206 struct symbol *sym; in sym_set_all_changed()
212 static void sym_calc_visibility(struct symbol *sym) in sym_calc_visibility()
267 struct symbol *sym_choice_default(struct menu *choice) in sym_choice_default()
270 struct symbol *def_sym; in sym_choice_default()
299 struct symbol *sym_calc_choice(struct menu *choice) in sym_calc_choice()
301 struct symbol *res = NULL; in sym_calc_choice()
302 struct symbol *sym; in sym_calc_choice()
376 static void sym_warn_unmet_dep(const struct symbol *sym) in sym_warn_unmet_dep()
406 void sym_calc_value(struct symbol *sym) in sym_calc_value()
506 struct symbol *ds = prop_get_symbol(prop); in sym_calc_value()
535 struct symbol *sym; in sym_clear_all_valid()
544 bool sym_tristate_within_range(const struct symbol *sym, tristate val) in sym_tristate_within_range()
561 bool sym_set_tristate_value(struct symbol *sym, tristate val) in sym_set_tristate_value()
586 void choice_set_value(struct menu *choice, struct symbol *sym) in choice_set_value()
623 tristate sym_toggle_tristate_value(struct symbol *sym) in sym_toggle_tristate_value()
653 bool sym_string_valid(struct symbol *sym, const char *str) in sym_string_valid()
696 bool sym_string_within_range(struct symbol *sym, const char *str) in sym_string_within_range()
738 bool sym_set_string_value(struct symbol *sym, const char *newval) in sym_set_string_value()
794 const char *sym_get_string_default(struct symbol *sym) in sym_get_string_default()
797 struct symbol *ds; in sym_get_string_default()
866 const char *sym_get_string_value(struct symbol *sym) in sym_get_string_value()
889 bool sym_is_changeable(const struct symbol *sym) in sym_is_changeable()
894 bool sym_is_choice_value(const struct symbol *sym) in sym_is_choice_value()
901 struct symbol *sym_lookup(const char *name, int flags) in sym_lookup()
903 struct symbol *symbol; in sym_lookup() local
917 hash_for_each_possible(sym_hashtable, symbol, node, hash) { in sym_lookup()
918 if (symbol->name && in sym_lookup()
919 !strcmp(symbol->name, name) && in sym_lookup()
920 (flags ? symbol->flags & flags in sym_lookup()
921 : !(symbol->flags & SYMBOL_CONST))) in sym_lookup()
922 return symbol; in sym_lookup()
930 symbol = xmalloc(sizeof(*symbol)); in sym_lookup()
931 memset(symbol, 0, sizeof(*symbol)); in sym_lookup()
932 symbol->name = new_name; in sym_lookup()
933 symbol->type = S_UNKNOWN; in sym_lookup()
934 symbol->flags = flags; in sym_lookup()
935 INIT_LIST_HEAD(&symbol->menus); in sym_lookup()
936 INIT_LIST_HEAD(&symbol->choice_link); in sym_lookup()
938 hash_add(sym_hashtable, &symbol->node, hash); in sym_lookup()
940 return symbol; in sym_lookup()
943 struct symbol *sym_find(const char *name) in sym_find()
945 struct symbol *symbol = NULL; in sym_find() local
960 hash_for_each_possible(sym_hashtable, symbol, node, hash) { in sym_find()
961 if (symbol->name && in sym_find()
962 !strcmp(symbol->name, name) && in sym_find()
963 !(symbol->flags & SYMBOL_CONST)) in sym_find()
967 return symbol; in sym_find()
971 struct symbol *sym;
1005 struct symbol **sym_re_search(const char *pattern) in sym_re_search()
1007 struct symbol *sym, **sym_arr = NULL; in sym_re_search()
1043 sym_arr = malloc((cnt+1) * sizeof(struct symbol *)); in sym_re_search()
1066 struct symbol *sym;
1071 static void dep_stack_insert(struct dep_stack *stack, struct symbol *sym) in dep_stack_insert()
1093 static void sym_check_print_recursive(struct symbol *last_sym) in sym_check_print_recursive()
1096 struct symbol *sym, *next_sym; in sym_check_print_recursive()
1161 static struct symbol *sym_check_expr_deps(const struct expr *e) in sym_check_expr_deps()
1163 struct symbol *sym; in sym_check_expr_deps()
1196 static struct symbol *sym_check_sym_deps(struct symbol *sym) in sym_check_sym_deps()
1198 struct symbol *sym2; in sym_check_sym_deps()
1243 static struct symbol *sym_check_choice_deps(struct symbol *choice) in sym_check_choice_deps()
1246 struct symbol *sym2; in sym_check_choice_deps()
1289 struct symbol *sym_check_deps(struct symbol *sym) in sym_check_deps()
1292 struct symbol *sym2; in sym_check_deps()
1320 struct symbol *prop_get_symbol(const struct property *prop) in prop_get_symbol()