• Home
  • Raw
  • Download

Lines Matching refs:glue

1 static void glue(bswap_ehdr, SZ)(struct elfhdr *ehdr)  in glue()  function
18 static void glue(bswap_phdr, SZ)(struct elf_phdr *phdr) in glue() function
30 static void glue(bswap_shdr, SZ)(struct elf_shdr *shdr) in glue() function
44 static void glue(bswap_sym, SZ)(struct elf_sym *sym) in glue() function
52 static struct elf_shdr *glue(find_section, SZ)(struct elf_shdr *shdr_table, in glue() function
63 static int glue(symfind, SZ)(const void *s0, const void *s1) in glue() function
76 static const char *glue(lookup_symbol, SZ)(struct syminfo *s, target_ulong orig_addr) in glue() function
78 struct elf_sym *syms = glue(s->disas_symtab.elf, SZ); in glue()
84 sym = bsearch(&key, syms, s->disas_num_syms, sizeof(*syms), glue(symfind, SZ)); in glue()
92 static int glue(symcmp, SZ)(const void *s0, const void *s1) in glue() function
101 static int glue(load_symbols, SZ)(struct elfhdr *ehdr, int fd, int must_swab) in glue() function
116 glue(bswap_shdr, SZ)(shdr_table + i); in glue()
120 symtab = glue(find_section, SZ)(shdr_table, ehdr->e_shnum, SHT_SYMTAB); in glue()
132 glue(bswap_sym, SZ)(&syms[i]); in glue()
152 qsort(syms, nsyms, sizeof(*syms), glue(symcmp, SZ)); in glue()
165 s->lookup_symbol = glue(lookup_symbol, SZ); in glue()
166 glue(s->disas_symtab.elf, SZ) = syms; in glue()
180 static int glue(load_elf, SZ)(int fd, int64_t address_offset, in glue() function
194 glue(bswap_ehdr, SZ)(&ehdr); in glue()
216 glue(load_symbols, SZ)(&ehdr, fd, must_swab); in glue()
228 glue(bswap_phdr, SZ)(ph); in glue()