HomeSort by relevance Sort by last modified time
    Searched defs:section_header (Results 1 - 3 of 3) sorted by null

  /frameworks/rs/cpu_ref/linkloader/include/
ELFSectionStrTab.h 31 ELFSectionHeaderTy const *section_header; member in class:ELFSectionStrTab
  /external/chromium_org/courgette/
disassembler_elf_32.cc 108 const Elf32_Shdr *section_header = SectionHeader(section_id); local
110 if (section_header->sh_type == SHT_NOBITS)
113 uint32 section_end = section_header->sh_offset + section_header->sh_size;
189 const Elf32_Shdr *section_header = SectionHeader(i); local
192 if (section_header->sh_type == SHT_NOBITS)
195 Elf32_Off section_begin = section_header->sh_offset;
196 Elf32_Off section_end = section_begin + section_header->sh_size;
199 return section_header->sh_addr + (offset32 - section_begin);
263 const Elf32_Shdr *section_header = SectionHeader(section_id) local
428 const Elf32_Shdr *section_header = SectionHeader(section_id); local
466 const Elf32_Shdr *section_header = SectionHeader(section_id); local
491 const Elf32_Shdr *section_header = SectionHeader(section_id); local
    [all...]
  /art/runtime/
elf_file.cc 126 llvm::ELF::Elf32_Shdr& section_header = GetSectionHeader(i); local
127 byte* section_addr = Begin() + section_header.sh_offset;
128 switch (section_header.sh_type) {
139 if ((section_header.sh_flags & llvm::ELF::SHF_ALLOC) != 0) {
355 byte* section_header = GetSectionHeadersStart() + (i * GetHeader().e_shentsize); local
356 CHECK_LT(section_header, End()) << file_->GetPath();
357 return *reinterpret_cast<llvm::ELF::Elf32_Shdr*>(section_header);
365 llvm::ELF::Elf32_Shdr& section_header = GetSectionHeader(i); local
366 if (section_header.sh_type == type) {
367 return &section_header;
    [all...]

Completed in 1363 milliseconds