/busybox-1.35.0/scripts/kconfig/ |
D | menu.c | 102 void menu_add_dep(struct expr *dep) in menu_add_dep() argument 104 current_entry->dep = expr_alloc_and(current_entry->dep, menu_check_dep(dep)); in menu_add_dep() 122 …uct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *dep) in menu_add_prop() argument 129 prop->visible.expr = menu_check_dep(dep); in menu_add_prop() 140 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep) in menu_add_prompt() argument 142 return menu_add_prop(type, prompt, NULL, dep); in menu_add_prompt() 145 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) in menu_add_expr() argument 147 menu_add_prop(type, NULL, expr, dep); in menu_add_expr() 150 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep) in menu_add_symbol() argument 152 menu_add_prop(type, NULL, expr_alloc_symbol(sym), dep); in menu_add_symbol() [all …]
|
D | lkc.h | 76 void menu_add_dep(struct expr *dep); 77 …ct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *dep); 78 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep); 79 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep); 80 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
|
D | expr.h | 50 #define E_NOT(dep) (2-(dep)) argument 75 struct expr *dep, *dep2; member 133 struct expr *dep; member 168 int expr_contains_symbol(struct expr *dep, struct symbol *sym); 169 bool expr_depends_symbol(struct expr *dep, struct symbol *sym);
|
D | expr.c | 777 int expr_contains_symbol(struct expr *dep, struct symbol *sym) in expr_contains_symbol() argument 779 if (!dep) in expr_contains_symbol() 782 switch (dep->type) { in expr_contains_symbol() 785 return expr_contains_symbol(dep->left.expr, sym) || in expr_contains_symbol() 786 expr_contains_symbol(dep->right.expr, sym); in expr_contains_symbol() 788 return dep->left.sym == sym; in expr_contains_symbol() 791 return dep->left.sym == sym || in expr_contains_symbol() 792 dep->right.sym == sym; in expr_contains_symbol() 794 return expr_contains_symbol(dep->left.expr, sym); in expr_contains_symbol() 801 bool expr_depends_symbol(struct expr *dep, struct symbol *sym) in expr_depends_symbol() argument [all …]
|
/busybox-1.35.0/modutils/ |
D | depmod.c | 174 module_entry *m, *dep; in depmod_main() local 222 dep = m->dnext; in depmod_main() 223 printf(" %s", dep->name); in depmod_main() 226 dep->dnext->dprev = dep->dprev; in depmod_main() 227 dep->dprev->dnext = dep->dnext; in depmod_main() 228 dep->dnext = dep->dprev = dep; in depmod_main()
|
D | Config.src | 17 With this option modprobe does not require modules.dep file 26 will try to generate modules.dep.bb file in order to speed up 30 NB: modules.dep.bb file format is not compatible 31 with modules.dep file as created/used by standard module tools. 175 string "Default name of modules.dep" 176 default "modules.dep" 180 Defaults to "modules.dep". 184 "modules.dep.bb.bb" or such.
|
D | modutils-24.c | 384 unsigned tgt_long dep; /* kernel addresses */ member 2749 struct new_module_ref *dep; in new_create_module_ksymtab() local 2759 dep = (struct new_module_ref *) sec->contents; in new_create_module_ksymtab() 2762 dep->dep = ext_modules[i].addr; in new_create_module_ksymtab() 2764 (char *) &dep->ref - sec->contents, tm); in new_create_module_ksymtab() 2765 dep->next_ref = 0; in new_create_module_ksymtab() 2766 ++dep; in new_create_module_ksymtab()
|
/busybox-1.35.0/examples/ |
D | depmod.pl | 37 my $dep = {}; 127 build_ref_tables($tgtname, \@output, $exp, $dep); 135 build_ref_tables($tgtname, \@output, $exp, $dep); 140 foreach my $module (keys %$dep) { 143 foreach (@{$dep->{$module}}) { 224 my ($name, $sym_ar, $exp, $dep) = @_; 249 push @{$dep->{$name}}, $symprefix . 'printk' unless $name eq 'vmlinux'; 255 push @{$dep->{$name}}, $1;
|
/busybox-1.35.0/ |
D | Makefile | 885 PHONY += depend dep 886 depend dep: target
|
/busybox-1.35.0/configs/ |
D | TEST_nommu_defconfig | 461 CONFIG_DEFAULT_DEPMOD_FILE="modules.dep"
|
D | TEST_rh9_defconfig | 476 CONFIG_DEFAULT_DEPMOD_FILE="modules.dep"
|
D | android2_defconfig | 495 CONFIG_DEFAULT_DEPMOD_FILE="modules.dep"
|
D | android_502_defconfig | 603 CONFIG_DEFAULT_DEPMOD_FILE="modules.dep"
|
D | android_defconfig | 519 CONFIG_DEFAULT_DEPMOD_FILE="modules.dep"
|
D | android_ndk_defconfig | 529 CONFIG_DEFAULT_DEPMOD_FILE="modules.dep"
|