Home | History | Annotate | Download | only in qemu

Lines Matching refs:shdr_table

52 static struct elf_shdr *glue(find_section, SZ)(struct elf_shdr *shdr_table,
57 if (shdr_table[i].sh_type == type)
58 return shdr_table + i;
103 struct elf_shdr *symtab, *strtab, *shdr_table = NULL;
109 shdr_table = load_at(fd, ehdr->e_shoff,
111 if (!shdr_table)
116 glue(bswap_shdr, SZ)(shdr_table + i);
120 symtab = glue(find_section, SZ)(shdr_table, ehdr->e_shnum, SHT_SYMTAB);
157 strtab = &shdr_table[symtab->sh_link];
171 qemu_free(shdr_table);
176 qemu_free(shdr_table);