Home
last modified time | relevance | path

Searched refs:secname (Results 1 – 8 of 8) sorted by relevance

/openbmc/linux/scripts/
H A Dgenerate_initcall_order.pl48 my $secname = $initcalls->{$counter}->{'module'} . '__' .
53 print "$index $level $secname\n";
72 my ($index, $level, $secname) = $data =~
77 !defined($secname)) {
89 'secname' => $secname
260 foreach my $secname (@{$sections->{$level}}) {
261 print "\t\t*(${section}..${secname}) ;\n";
/openbmc/obmc-console/
H A Dconfig.c112 const char *config_get_section_value(struct config *config, const char *secname, in config_get_section_value() argument
118 rc = snprintf(buf, sizeof(buf), "%s:%s", secname, name); in config_get_section_value()
126 secname, name); in config_get_section_value()
H A Dconfig.h25 const char *config_get_section_value(struct config *config, const char *secname,
/openbmc/linux/arch/s390/kernel/
H A Dmodule.c532 char *secstrings, *secname; in module_finalize() local
552 secname = secstrings + s->sh_name; in module_finalize()
554 if (!strcmp(".altinstructions", secname)) in module_finalize()
559 (str_has_prefix(secname, ".s390_indirect"))) in module_finalize()
563 (str_has_prefix(secname, ".s390_return"))) in module_finalize()
567 if (!strcmp(FTRACE_CALLSITE_SECTION, secname)) { in module_finalize()
/openbmc/linux/arch/arm/kernel/
H A Dmodule.c466 const char *secname = secstrs + s->sh_name; in module_finalize() local
474 if (!strcmp(".ARM.exidx", secname)) in module_finalize()
477 txtname = secname + strlen(".ARM.exidx"); in module_finalize()
490 if (strcmp(".ARM.exidx.init.text", secname) == 0) in module_finalize()
/openbmc/linux/scripts/mod/
H A Dmodpost.c516 const char *secname; in parse_elf() local
525 secname = secstrings + sechdrs[i].sh_name; in parse_elf()
526 if (strcmp(secname, ".modinfo") == 0) { in parse_elf()
531 } else if (!strcmp(secname, ".export_symbol")) { in parse_elf()
1129 Elf_Addr faddr, const char *secname, in check_export_symbol() argument
1190 if (match(secname, PATTERNS(INIT_SECTIONS))) in check_export_symbol()
1193 else if (match(secname, PATTERNS(EXIT_SECTIONS))) in check_export_symbol()
/openbmc/linux/arch/parisc/kernel/
H A Dmodule.c926 char *secname = secstrings + s->sh_name; in module_finalize() local
928 if (!strcmp(".altinstructions", secname)) in module_finalize()
937 if (symindex != -1 && !strcmp(secname, FTRACE_CALLSITE_SECTION)) { in module_finalize()
/openbmc/linux/arch/mips/boot/tools/
H A Drelocs.c108 static struct section *sec_lookup(const char *secname) in sec_lookup() argument
113 if (strcmp(secname, sec_name(i)) == 0) in sec_lookup()