Searched refs:dep (Results 1 – 10 of 10) sorted by relevance
| /scripts/ |
| A D | headerdep.pl | 105 if(my($dep) = ($line =~ m/^#\s*include\s*<(.*?)>/)) { 106 push @queue, $dep; 107 push @{$deps{$header}}, [$i + 1, $dep]; 148 for my $dep (@{$deps{$name}}) { 149 my $chain = [@$top, [$dep->[0], $dep->[1]]]; 153 if(grep { $_->[1] eq $dep->[1] } @$top) { 186 for my $dep (@{$deps{$header}}) { 188 mangle($header), mangle($dep->[1]);
|
| A D | generate_rust_analyzer.py | 44 "deps": [{"crate": crates_indexes[dep], "name": dep} for dep in deps],
|
| A D | Makefile.host | 93 hostrust_flags = --out-dir $(dir $@) --emit=dep-info=$(depfile) \
|
| A D | Makefile.build | 335 --out-dir $(dir $@) --emit=dep-info=$(depfile)
|
| /scripts/kconfig/ |
| A D | menu.c | 132 current_entry->dep = expr_alloc_and(current_entry->dep, dep); in menu_add_dep() 152 struct expr *dep) in menu_add_prop() argument 163 prop->visible.expr = dep; in menu_add_prop() 180 struct expr *dep) in menu_add_prompt() argument 319 menu->dep = basedep; in _menu_finalize() 360 dep = expr_transform(dep); in _menu_finalize() 361 dep = expr_alloc_and(basedep, dep); in _menu_finalize() 362 dep = expr_eliminate_dups(dep); in _menu_finalize() 417 dep = menu->prompt ? menu->prompt->visible.expr : menu->dep; in _menu_finalize() 434 dep = expr_trans_compare(dep, E_UNEQUAL, &symbol_no); in _menu_finalize() [all …]
|
| A D | lkc.h | 85 void menu_add_dep(struct expr *dep); 86 void menu_add_visibility(struct expr *dep); 88 struct expr *dep); 89 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep); 90 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
|
| A D | expr.h | 57 #define EXPR_NOT(dep) (2-(dep)) argument 264 struct expr *dep; member 308 bool expr_contains_symbol(struct expr *dep, struct symbol *sym); 309 bool expr_depends_symbol(struct expr *dep, struct symbol *sym);
|
| A D | expr.c | 715 if (!dep) in expr_contains_symbol() 718 switch (dep->type) { in expr_contains_symbol() 724 return dep->left.sym == sym; in expr_contains_symbol() 731 return dep->left.sym == sym || in expr_contains_symbol() 732 dep->right.sym == sym; in expr_contains_symbol() 743 if (!dep) in expr_depends_symbol() 746 switch (dep->type) { in expr_depends_symbol() 751 return dep->left.sym == sym; in expr_depends_symbol() 753 if (dep->left.sym == sym) { in expr_depends_symbol() 754 if (dep->right.sym == &symbol_yes || dep->right.sym == &symbol_mod) in expr_depends_symbol() [all …]
|
| A D | streamline_config.pl | 225 my $dep = $3; 227 if ($dep !~ /^\s*(y|m|n)\s*$/) { 228 $dep =~ s/.*\sif\s+//; 229 $depends{$config} .= " " . $dep; 230 dprint "Added default depends $dep to $config\n";
|
| /scripts/package/ |
| A D | kernel.spec | 105 for x in alias alias.bin builtin.alias.bin builtin.bin dep dep.bin \
|
Completed in 11 milliseconds