OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shdr_table
(Results
1 - 2
of
2
) sorted by null
/external/qemu/
elf_ops.h
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;
local
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
);
[
all
...]
/sdk/emulator/qtools/
read_elf.cpp
156
char *ReadStringTable(Elf32_Ehdr *hdr, Elf32_Shdr *
shdr_table
, FILE *f)
158
Elf32_Shdr *shdr =
shdr_table
+ hdr->e_shstrndx;
Completed in 46 milliseconds