/linux/tools/perf/util/ |
A D | symbol.c | 194 nd = rb_first_cached(symbols); in symbols__fixup_duplicate() 363 if (symbols == NULL) in symbols__find() 366 n = symbols->rb_root.rb_node; in symbols__find() 470 if (symbols == NULL) in symbols__find_by_name() 473 n = symbols->rb_root.rb_node; in symbols__find_by_name() 1470 symbols__fixup_end(&dso->symbols); in __dso__load_kallsyms() 1577 asymbol **symbols, *sym; in dso__load_bfd_symbols() local 1604 symbols = malloc(symbols_size); in dso__load_bfd_symbols() 1605 if (!symbols) in dso__load_bfd_symbols() 1634 sym = symbols[i]; in dso__load_bfd_symbols() [all …]
|
A D | symbol.h | 74 void symbols__delete(struct rb_root_cached *symbols); 82 #define symbols__for_each_entry(symbols, pos, nd) \ argument 83 for (nd = rb_first_cached(symbols); \ 202 void __symbols__insert(struct rb_root_cached *symbols, struct symbol *sym, 204 void symbols__insert(struct rb_root_cached *symbols, struct symbol *sym); 205 void symbols__fixup_duplicate(struct rb_root_cached *symbols); 206 void symbols__fixup_end(struct rb_root_cached *symbols);
|
A D | kvm-stat.h | 131 #define define_exit_reasons_table(name, symbols) \ argument 133 symbols, { -1, NULL } \
|
A D | dso.h | 152 struct rb_root_cached symbols; member 225 symbols__for_each_entry(&(dso)->symbols, pos, n) 257 return !RB_EMPTY_ROOT(&dso->symbols.rb_root); in dso__has_symbols()
|
A D | map.c | 304 struct rb_root_cached *symbols = &map->dso->symbols; in map__fixup_start() local 305 struct rb_node *nd = rb_first_cached(symbols); in map__fixup_start() 314 struct rb_root_cached *symbols = &map->dso->symbols; in map__fixup_end() local 315 struct rb_node *nd = rb_last(&symbols->rb_root); in map__fixup_end()
|
/linux/scripts/ |
A D | extract-sys-certs.pl | 61 my %symbols = (); 73 $symbols{$name} = $addr; 95 unless (exists($symbols{"__cert_list_start"}) && 96 exists($symbols{"system_certificate_list_size"})); 98 my $start = Math::BigInt->new($symbols{"__cert_list_start"}); 101 my $size_sym = Math::BigInt->new($symbols{"system_certificate_list_size"});
|
A D | get_abi.pl | 65 my %symbols; 151 push @{$symbols{$content}->{file}}, " $file:" . ($ln - 1); 160 $symbols{$w}->{xref} = $what; 266 $symbols{$w}->{xref} = $what; 358 $name =~ s/$symbols/\\$1/g; 449 $xref =~ s/$symbols/\\$1/g; 483 if ($data{$what}->{symbols}) { 486 foreach my $content(@{$data{$what}->{symbols}}) { 487 my $label = $data{$symbols{$content}->{xref}}->{label}; 969 foreach my $what(sort keys %symbols) { [all …]
|
A D | checkkconfigsymbols.py | 355 for _file, symbols in referenced_symbols.items(): 356 for symbol in symbols: 399 symbols = REGEX_SOURCE_SYMBOL.findall(line) 400 for symbol in symbols: 454 symbols = get_symbols_in_line(line) 460 symbols.extend(get_symbols_in_line(line)) 461 for symbol in set(symbols):
|
/linux/Documentation/livepatch/ |
A D | module-elf-format.rst | 32 relocation sections and symbols, which are described in this document. The 33 Elf constants used to mark livepatch symbols and relocation sections were 39 reference non-exported global symbols and non-included local symbols. 40 Relocations referencing these types of symbols cannot be left in as-is 47 symbols while taking into account its scope and what module the symbol 52 relas reference are special livepatch symbols (see section 2 and 3). The 187 4. Livepatch symbols 190 Livepatch symbols are symbols referred to by livepatch relocation sections. 191 These are symbols accessed from new versions of functions for patched 260 This is used to differentiate duplicate symbols within the same [all …]
|
/linux/sound/pci/cs46xx/ |
A D | dsp_spos.c | 130 if (ins->symbol_table.symbols[i].deleted) { in find_free_symbol_index() 163 ins->symbol_table.symbols[ins->symbol_table.nsymbols] = module->symbol_table.symbols[i]; in add_symbols() 230 ins->symbol_table.symbols = in cs46xx_dsp_spos_create() 273 vfree(ins->symbol_table.symbols); in cs46xx_dsp_spos_create() 297 vfree(ins->symbol_table.symbols); in cs46xx_dsp_spos_destroy() 452 if (ins->symbol_table.symbols[i].deleted) in cs46xx_dsp_lookup_symbol() 457 return (ins->symbol_table.symbols + i); in cs46xx_dsp_lookup_symbol() 479 if (ins->symbol_table.symbols[i].deleted) in cs46xx_dsp_lookup_symbol_addr() 484 return (ins->symbol_table.symbols + i); in cs46xx_dsp_lookup_symbol_addr() 504 if (ins->symbol_table.symbols[i].deleted) in cs46xx_dsp_proc_symbol_table_read() [all …]
|
/linux/Documentation/kbuild/ |
A D | kconfig.rst | 16 New kernel releases often introduce new config symbols. Often more 17 important, new kernel releases may rename config symbols. When 21 symbols have been introduced. 23 To see a list of new config symbols, use:: 28 and the config program will list any new symbols, one per line. 86 including symbols of your miniconfig file. 177 SEARCHING for CONFIG symbols 188 This lists all config symbols that contain "hotplug", 198 When searching, symbols are sorted thus: 255 or in the configuration symbols. [all …]
|
A D | kconfig-language.rst | 20 | +- Set version information on all module symbols 35 bool "Set version information on all module symbols" 141 symbols. 148 In general use select only for non-visible symbols 149 (no prompts anywhere) and for symbols with no dependencies. 228 enables the third modular state for all config symbols. 256 (2) If the values of both symbols are equal, it returns 'y', 258 (3) If the values of both symbols are equal, it returns 'n', 272 There are two types of symbols: constant and non-constant symbols. 276 Constant symbols are only part of expressions. Constant symbols are [all …]
|
A D | modules.rst | 461 Module.symvers contains a list of all exported symbols from a kernel 468 generated. Module.symvers contains all exported symbols from 486 1) It lists all exported symbols from vmlinux and all modules. 493 to the symbols from the kernel to check if all external symbols 495 the symbols by reading Module.symvers from the kernel source 497 written containing all exported symbols from that external module. 502 Sometimes, an external module uses exported symbols from 504 all symbols to avoid spitting out warnings about undefined 505 symbols. Two solutions exist for this situation. 512 foo.ko needs symbols from bar.ko, you can use a [all …]
|
A D | Kconfig.select-break | 10 # Kconfig currently does not check the list of symbols listed on a symbol's 12 # symbols. Because of this use of select should be used with caution. An
|
/linux/Documentation/core-api/ |
A D | symbol-namespaces.rst | 6 export surface of in-kernel symbols exported through the family of 24 their exported symbols into separate namespaces. That is useful for 26 limiting the availability of a set of symbols for use in other parts of the 27 kernel. As of today, modules that make use of symbols exported into namespaces, 42 exporting of kernel symbols to the kernel symbol table, variants of these are 43 available to export symbols into a certain namespace: EXPORT_SYMBOL_NS() and 60 Defining namespaces for all symbols of a subsystem can be very verbose and may 68 export all symbols defined in usb-common into the namespace USB_COMMON, add a 90 In order to use symbols that are exported into namespaces, kernel modules need 93 for the namespaces it uses symbols from. E.g. a module using the [all …]
|
/linux/tools/perf/Documentation/ |
A D | perf-annotate.txt | 16 code. If the object file has debug symbols then the source code will be 29 Only consider symbols in these dsos. 70 Load module symbols. WARNING: use only with -k and LIVE kernel. 114 Look for files with symbols relative to this directory. 129 Skip symbols that cannot be annotated.
|
A D | perf-diff.txt | 24 As the perf.data files could come from different binaries, the symbols addresses 26 symbols name. 39 Load module symbols. WARNING: use only with -k and LIVE kernel 43 Only consider symbols in these dsos. CSV that understands 49 Only consider symbols in these comms. CSV that understands 54 --symbols=:: 55 Only consider these symbols. CSV that understands 85 Look for files with symbols relative to this directory. 121 Filters can be applied by --comms, --dsos and/or --symbols options.
|
A D | perf-kallsyms.txt | 6 perf-kallsyms - Searches running kernel for symbols 17 addresses and the addresses in the ELF kallsyms symbol table (for symbols in
|
A D | perf-top.txt | 108 Hide kernel symbols. 112 Hide user symbols. 115 Demangle kernel symbols. 152 Only consider symbols in these dsos. This option will affect the 156 Only consider symbols in these comms. This option will affect the 159 --symbols:: 160 Only consider these symbols. This option will affect the 213 Filters can be applied by --comms, --dsos and/or --symbols options and 380 Hide kernel symbols. 383 Hide user symbols.
|
/linux/Documentation/userspace-api/media/ |
A D | dmx.h.rst.exceptions | 9 # dmx_pes_type_t enum symbols 33 # Ignore obsolete symbols 40 # dmx_input_t symbols
|
/linux/Documentation/dev-tools/ |
A D | gdb-kernel-debugging.rst | 70 - Load module (and main kernel) symbols:: 72 (gdb) lx-symbols 94 - Load the module on the target and watch the symbols being loaded as well as 172 lx-symbols -- (Re-)load symbols of Linux kernel and currently loaded modules
|
/linux/Documentation/ABI/stable/ |
A D | vdso | 28 Unless otherwise noted, the set of symbols with any given version and the 29 ABI of those symbols is considered stable. It may vary across architectures,
|
/linux/arch/s390/kernel/ |
A D | module.c | 124 Elf_Sym *symbols; in module_frob_arch_sections() local 148 symbols = (void *) hdr + symtab->sh_offset; in module_frob_arch_sections() 151 if (symbols[i].st_shndx == SHN_UNDEF && in module_frob_arch_sections() 152 strcmp(strings + symbols[i].st_name, in module_frob_arch_sections() 155 symbols[i].st_shndx = SHN_ABS; in module_frob_arch_sections()
|
/linux/Documentation/admin-guide/ |
A D | abi-removed.rst | 1 ABI removed symbols
|
/linux/drivers/firmware/efi/libstub/ |
A D | Makefile | 118 --prefix-symbols=__efistub_ 125 --prefix-symbols=__efistub_
|