| /scripts/kconfig/ |
| A D | lkc_proto.h | 30 extern struct symbol * symbol_hash[SYMBOL_HASHSIZE]; 32 struct symbol * sym_lookup(const char *name, int flags); 33 struct symbol * sym_find(const char *name); 35 struct symbol ** sym_re_search(const char *pattern); 37 void sym_calc_value(struct symbol *sym); 38 enum symbol_type sym_get_type(struct symbol *sym); 40 bool sym_set_tristate_value(struct symbol *sym,tristate tri); 41 tristate sym_toggle_tristate_value(struct symbol *sym); 45 bool sym_is_changable(struct symbol *sym); 46 struct property * sym_get_choice_prop(struct symbol *sym); [all …]
|
| A D | lkc.h | 72 void set_all_choice_values(struct symbol *csym); 88 void menu_add_entry(struct symbol *sym); 123 struct symbol *sym_choice_default(struct symbol *sym); 125 struct symbol *sym_check_deps(struct symbol *sym); 127 struct symbol *prop_get_symbol(struct property *prop); 134 static inline struct symbol *sym_get_choice_value(struct symbol *sym) in sym_get_choice_value() 136 return (struct symbol *)sym->curr.val; in sym_get_choice_value() 139 static inline bool sym_set_choice_value(struct symbol *ch, struct symbol *chval) in sym_set_choice_value() 144 static inline bool sym_is_choice(struct symbol *sym) in sym_is_choice() 154 static inline bool sym_is_optional(struct symbol *sym) in sym_is_optional() [all …]
|
| A D | symbol.c | 242 struct symbol *sym_choice_default(struct symbol *sym) in sym_choice_default() 268 static struct symbol *sym_calc_choice(struct symbol *sym) in sym_calc_choice() 807 struct symbol *symbol; in sym_lookup() local 821 for (symbol = symbol_hash[hash]; symbol; symbol = symbol->next) { in sym_lookup() 834 symbol = xmalloc(sizeof(*symbol)); in sym_lookup() 835 memset(symbol, 0, sizeof(*symbol)); in sym_lookup() 843 return symbol; in sym_lookup() 848 struct symbol *symbol = NULL; in sym_find() local 863 for (symbol = symbol_hash[hash]; symbol; symbol = symbol->next) { in sym_find() 870 return symbol; in sym_find() [all …]
|
| A D | expr.h | 39 struct symbol *sym; 83 struct symbol { struct 85 struct symbol *next; argument 234 struct symbol *sym; 290 extern struct symbol symbol_yes, symbol_no, symbol_mod; 291 extern struct symbol *modules_sym; 292 extern struct symbol *sym_defconfig_list; 294 struct expr *expr_alloc_symbol(struct symbol *sym); 297 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2); 307 int expr_contains_symbol(struct expr *dep, struct symbol *sym); [all …]
|
| A D | zconf.y | 40 struct symbol *symbol; member 93 %type <symbol> symbol 235 config_option: T_RANGE symbol symbol if_expr T_EOL 497 | symbol T_LESS symbol { $$ = expr_alloc_comp(E_LTH, $1, $3); } 498 | symbol T_LESS_EQUAL symbol { $$ = expr_alloc_comp(E_LEQ, $1, $3); } 499 | symbol T_GREATER symbol { $$ = expr_alloc_comp(E_GTH, $1, $3); } 500 | symbol T_GREATER_EQUAL symbol { $$ = expr_alloc_comp(E_GEQ, $1, $3); } 501 | symbol T_EQUAL symbol { $$ = expr_alloc_comp(E_EQUAL, $1, $3); } 502 | symbol T_UNEQUAL symbol { $$ = expr_alloc_comp(E_UNEQUAL, $1, $3); } 532 struct symbol *sym; [all …]
|
| A D | menu.c | 47 void menu_add_entry(struct symbol *sym) in menu_add_entry() 113 struct symbol *sym = current_entry->sym; in menu_set_type() 223 static int menu_validate_number(struct symbol *sym, struct symbol *sym2) in menu_validate_number() 229 static void sym_check_prop(struct symbol *sym) in sym_check_prop() 232 struct symbol *sym2; in sym_check_prop() 296 struct symbol *sym; in menu_finalize() 402 struct symbol *es = prop_get_symbol(prop); in menu_finalize() 406 struct symbol *es = prop_get_symbol(prop); in menu_finalize() 630 struct symbol *sym; in menu_is_visible() 845 struct symbol *sym; in get_relations_str() [all …]
|
| A D | confdata.c | 289 struct symbol *sym; in conf_read_simple() 443 struct symbol *sym; in conf_read() 705 struct symbol *sym; in conf_write_defconfig() 744 struct symbol *cs; in conf_write_defconfig() 745 struct symbol *ds; in conf_write_defconfig() 779 struct symbol *sym; in conf_write() 912 struct symbol *sym; in conf_split_config() 1016 struct symbol *sym; in conf_write_autoconf() 1126 struct symbol *sym; in randomize_choice_values() 1174 struct symbol *sym; in set_all_choice_values() [all …]
|
| A D | conf.c | 83 static int conf_askvalue(struct symbol *sym, const char *def) in conf_askvalue() 131 struct symbol *sym = menu->sym; in conf_string() 164 struct symbol *sym = menu->sym; in conf_sym() 231 struct symbol *sym, *def_sym; in conf_choice() 346 struct symbol *sym; in conf() 413 struct symbol *sym; in check_conf()
|
| A D | qconf.h | 260 QString debug_info(struct symbol *sym); 262 static void expr_print_help(void *data, struct symbol *sym, const char *str); 266 struct symbol *sym; 288 struct symbol **result;
|
| A D | mconf.c | 392 struct symbol **sym_arr; in search_conf() 467 struct symbol *sym; in build_conf() 529 struct symbol *def_sym = sym_get_choice_value(sym); in build_conf() 648 struct symbol *sym; in conf() 799 struct symbol *active; in conf_choice()
|
| A D | expr.c | 17 struct expr *expr_alloc_symbol(struct symbol *sym) in expr_alloc_symbol() 42 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2) in expr_alloc_comp() 426 struct symbol *sym1, *sym2; in expr_join_or() 490 struct symbol *sym1, *sym2; in expr_join_and() 843 int expr_contains_symbol(struct expr *dep, struct symbol *sym) in expr_contains_symbol() 871 bool expr_depends_symbol(struct expr *dep, struct symbol *sym) in expr_depends_symbol() 914 struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym) in expr_trans_compare() 1141 void (*fn)(void *, struct symbol *, const char *), in expr_print() argument 1232 static void expr_print_file_helper(void *data, struct symbol *sym, const char *str) in expr_print_file_helper() 1242 static void expr_print_gstr_helper(void *data, struct symbol *sym, const char *str) in expr_print_gstr_helper() [all …]
|
| A D | nconf.c | 692 struct symbol **sym_arr; in search_conf() 735 struct symbol *sym; in build_conf() 794 struct symbol *def_sym = sym_get_choice_value(sym); in build_conf() 1070 struct symbol *sym; in conf() 1233 struct symbol *active; in conf_choice()
|
| A D | gconf.c | 759 struct symbol *sym; in renderer_edited() 780 struct symbol *sym = menu->sym; in change_sym_value() 1008 struct symbol *sym = menu->sym; in fill_row() 1060 struct symbol *def_sym = sym_get_choice_value(sym); in fill_row() 1219 struct symbol *sym; in update_tree() 1299 struct symbol *sym; in display_tree()
|
| A D | qconf.cc | 106 struct symbol* sym; in updateMenu() 467 struct symbol* sym; in setValue() 492 struct symbol* sym; in changeValue() 1073 struct symbol* sym; in menuInfo() 1127 QString ConfigInfoView::debug_info(struct symbol *sym) in debug_info() 1211 void ConfigInfoView::expr_print_help(void *data, struct symbol *sym, const char *str) in expr_print_help() 1312 struct symbol **p; in search()
|
| /scripts/kconfig/tests/err_recursive_dep/ |
| A D | expected_stderr | 2 Kconfig:11: symbol B is selected by B 7 Kconfig:5: symbol A depends on A 12 Kconfig:17: symbol C1 depends on C2 13 Kconfig:21: symbol C2 depends on C1 18 Kconfig:32: symbol D2 is selected by D1 19 Kconfig:27: symbol D1 depends on D2 24 Kconfig:37: symbol E1 depends on E2 25 Kconfig:42: symbol E2 is implied by E1 30 Kconfig:60: symbol G depends on G 35 Kconfig:51: symbol F2 depends on F1 [all …]
|
| /scripts/kconfig/tests/new_choice_with_dep/ |
| A D | Kconfig | 4 This is a new symbol. 18 This is a new symbol, so should be asked. 35 This is a new symbol, so should be asked.
|
| /scripts/ |
| A D | kernel-doc | 444 my $symbol = shift @ARGV; 445 $nosymbol_table{$symbol} = 1;
|