Home
last modified time | relevance | path

Searched refs:module (Results 1 – 14 of 14) sorted by relevance

/scripts/gdb/linux/
Dmodules.py35 for module in module_list():
36 if module['name'].string() == name:
37 return module
52 module = find_module_by_name(mod_name)
53 if module:
54 return module.dereference()
75 for module in module_list():
77 address=str(module['module_core']).split()[0],
78 name=module['name'].string(),
79 size=str(module['core_size']),
[all …]
Dsymbols.py29 module = gdb.parse_and_eval("mod")
30 module_name = module['name'].string()
48 cmd.load_module_symbols(module)
92 def _section_arguments(self, module): argument
94 sect_attrs = module['sect_attrs'].dereference()
110 def load_module_symbols(self, module): argument
111 module_name = module['name'].string()
112 module_addr = str(module['module_core']).split()[0]
125 sections=self._section_arguments(module))
151 [self.load_module_symbols(module) for module in module_list]
/scripts/
Dexport_report.pl97 my (undef, $symbol, $module, $gpl) = split;
98 $SYMBOL { $symbol } = [ $module , "0" , $symbol, $gpl];
108 my $module;
110 unless (open ($module, '<', $thismod)) {
116 while ( <$module> ) {
131 my ($module, $value, $symbol, $gpl) = @{$SYMBOL{$sym}};
132 $SYMBOL{ $sym } = [ $module, $value+1, $symbol, $gpl];
140 close($module);
158 my ($module, $value, $symbol, $gpl) = @{$list};
159 printf("%-25s\t%-25s\t%-10s\t", $symbol, $module, $value);
[all …]
Dnamespace.pl378 foreach my $module (@{$def{$name}}) {
379 printf "\t$module\n";
447 my @module = @{$def{$name}};
448 foreach my $module (@module) {
449 if (! exists($noref{$module})) {
450 $noref{$module} = [];
452 push(@{$noref{$module}}, $name);
458 foreach my $module (sort(keys(%noref))) {
459 printf " $module\n";
460 foreach (sort(@{$noref{$module}})) {
Dconfig20 --module|-m option Turn option into a module
32 --module-after|-M beforeopt option
33 Turn option into module directly after other option
Dmarkup_oops.pl42 my $module = "";
178 $module = $3;
181 $module = $3;
194 if ($module ne "") {
196 $modulefile = `modinfo -F filename $module`;
201 print "Module .ko file for $module not found. Aborting\n";
Dmodule-common.lds2 * Common module linker script, always used when linking a module.
DMakefile.build120 $(if $(part-of-module), \
125 $(real-objs-m) : part-of-module := y
126 $(real-objs-m:.o=.i) : part-of-module := y
127 $(real-objs-m:.o=.s) : part-of-module := y
128 $(real-objs-m:.o=.lst): part-of-module := y
Dspelling.txt636 mopdule||module
/scripts/kconfig/
Dstreamline_config.pl397 foreach my $module (keys(%modules)) {
398 if (defined($objects{$module})) {
399 my @arr = @{$objects{$module}};
401 $configs{$conf} = $module;
402 dprint "$conf added by direct ($module)\n";
415 print STDERR "$module config not found!!\n";
633 foreach my $module (keys(%modules)) {
634 if (defined($objects{$module})) {
635 my @arr = @{$objects{$module}};
641 print STDERR "module $module did not have configs";
/scripts/mod/
Dmodpost.c118 static struct module *modules;
120 static struct module *find_module(char *modname) in find_module()
122 struct module *mod; in find_module()
130 static struct module *new_module(const char *modname) in new_module()
132 struct module *mod; in new_module()
161 struct module *module; member
205 static struct symbol *new_symbol(const char *name, struct module *module, in new_symbol() argument
213 new->module = module; in new_symbol()
306 static struct symbol *sym_add_exported(const char *name, struct module *mod, in sym_add_exported()
317 s->module->name, in sym_add_exported()
[all …]
Dmodpost.h111 struct module { struct
112 struct module *next; argument
175 void handle_moddevtable(struct module *mod, struct elf_info *info,
177 void add_moddevtable(struct buffer *buf, struct module *mod);
Dfile2alias.c140 unsigned char max, struct module *mod) in do_usb_entry()
244 static void do_usb_entry_multi(void *symval, struct module *mod) in do_usb_entry_multi()
310 struct module *mod) in do_usb_table()
510 struct module *mod) in do_pnp_device_entry()
536 struct module *mod) in do_pnp_card_entries()
1202 struct module *mod) in do_table()
1260 void handle_moddevtable(struct module *mod, struct elf_info *info, in handle_moddevtable()
1325 void add_moddevtable(struct buffer *buf, struct module *mod) in add_moddevtable()
/scripts/package/
Dbuilddeb167 for module in $(find $tmpdir/lib/modules/ -name *.ko -printf '%P\n'); do
168 module=lib/modules/$module
169 mkdir -p $(dirname $dbg_dir/usr/lib/debug/$module)
171 $OBJCOPY --only-keep-debug $tmpdir/$module $dbg_dir/usr/lib/debug/$module
173 $OBJCOPY --strip-debug $tmpdir/$module
175 $OBJCOPY --add-gnu-debuglink=$dbg_dir/usr/lib/debug/$module $tmpdir/$module