Home
last modified time | relevance | path

Searched refs:dep (Results 1 – 6 of 6) sorted by relevance

/scripts/kconfig/
A Dmenu.c108 current_entry->dep = expr_alloc_and(current_entry->dep, dep); in menu_add_dep()
349 menu->dep = basedep; in menu_finalize()
390 dep = expr_transform(dep); in menu_finalize()
391 dep = expr_alloc_and(expr_copy(basedep), dep); in menu_finalize()
392 dep = expr_eliminate_dups(dep); in menu_finalize()
394 dep = expr_trans_bool(dep); in menu_finalize()
452 dep = menu->prompt ? menu->prompt->visible.expr : menu->dep; in menu_finalize()
469 dep = expr_trans_compare(dep, E_UNEQUAL, &symbol_no); in menu_finalize()
470 dep = expr_eliminate_dups(expr_transform(dep)); in menu_finalize()
473 expr_free(dep); in menu_finalize()
[all …]
A Dlkc.h89 void menu_add_dep(struct expr *dep);
90 void menu_add_visibility(struct expr *dep);
91 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep);
92 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep);
93 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
A Dexpr.h49 #define EXPR_NOT(dep) (2-(dep)) argument
253 struct expr *dep; member
307 int expr_contains_symbol(struct expr *dep, struct symbol *sym);
308 bool expr_depends_symbol(struct expr *dep, struct symbol *sym);
A Dstreamline_config.pl224 my $dep = $3;
225 if ($dep !~ /^\s*(y|m|n)\s*$/) {
226 $dep =~ s/.*\sif\s+//;
227 $depends{$config} .= " " . $dep;
228 dprint "Added default depends $dep to $config\n";
A Dexpr.c845 if (!dep) in expr_contains_symbol()
848 switch (dep->type) { in expr_contains_symbol()
854 return dep->left.sym == sym; in expr_contains_symbol()
861 return dep->left.sym == sym || in expr_contains_symbol()
862 dep->right.sym == sym; in expr_contains_symbol()
873 if (!dep) in expr_depends_symbol()
876 switch (dep->type) { in expr_depends_symbol()
881 return dep->left.sym == sym; in expr_depends_symbol()
883 if (dep->left.sym == sym) { in expr_depends_symbol()
884 if (dep->right.sym == &symbol_yes || dep->right.sym == &symbol_mod) in expr_depends_symbol()
[all …]
/scripts/
A DMakefile.autoconf11 __all: include/autoconf.mk include/autoconf.mk.dep
51 include/autoconf.mk.dep: include/config.h FORCE

Completed in 15 milliseconds