Home
last modified time | relevance | path

Searched refs:symtab (Results 1 – 4 of 4) sorted by relevance

/scripts/
Dinsert-sys-cert.c133 static Elf_Sym *find_elf_symbol(Elf_Ehdr *hdr, Elf_Shdr *symtab, char *name) in find_elf_symbol() argument
142 link = symtab->sh_link; in find_elf_symbol()
143 symtab_start = (void *)hdr + symtab->sh_offset; in find_elf_symbol()
144 n = symtab->sh_size / symtab->sh_entsize; in find_elf_symbol()
157 static void get_symbol_from_table(Elf_Ehdr *hdr, Elf_Shdr *symtab, in get_symbol_from_table() argument
169 elf_sym = find_elf_symbol(hdr, symtab, name); in get_symbol_from_table()
286 Elf_Shdr *symtab = NULL; in main() local
346 symtab = get_symbol_table(hdr); in main()
347 if (!symtab) { in main()
368 get_symbol_from_table(hdr, symtab, CERT_SYM, &cert_sym); in main()
[all …]
Dsortextable.h99 const Elf_Sym *symtab; in do_func() local
155 symtab = (const Elf_Sym *)((const char *)ehdr + in do_func()
196 sort_needed_sym - symtab, in do_func()
/scripts/gcc-plugins/
Dgcc-common.h718 #define cgraph_n_nodes symtab->cgraph_count
719 #define cgraph_max_uid symtab->cgraph_max_uid
747 symtab->change_decl_assembler_name(decl, name); in change_decl_assembler_name()
797 return symtab->add_cgraph_insertion_hook(hook, data); in cgraph_add_function_insertion_hook()
802 symtab->remove_cgraph_insertion_hook(entry); in cgraph_remove_function_insertion_hook()
807 return symtab->add_cgraph_removal_hook(hook, data); in cgraph_add_node_removal_hook()
812 symtab->remove_cgraph_removal_hook(entry); in cgraph_remove_node_removal_hook()
817 return symtab->add_cgraph_duplication_hook(hook, data); in cgraph_add_node_duplication_hook()
822 symtab->remove_cgraph_duplication_hook(entry); in cgraph_remove_node_duplication_hook()
827 symtab->call_cgraph_duplication_hooks(node, node2); in cgraph_call_node_duplication_hooks()
[all …]
/scripts/genksyms/
Dgenksyms.c28 static struct symbol *symtab[HASH_BUCKETS]; variable
159 for (sym = symtab[h]; sym; sym = sym->hash_next) in find_symbol()
230 for (sym = symtab[h]; sym; sym = sym->hash_next) { in __add_symbol()
268 for (psym = &symtab[h]; *psym; psym = &(*psym)->hash_next) { in __add_symbol()
285 sym->hash_next = symtab[h]; in __add_symbol()
286 symtab[h] = sym; in __add_symbol()