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

  /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...]
disassembler_elf_32_x86.cc 64 const Elf32_Shdr *section_header,
85 size_t file_offset = section_header->sh_offset;
86 size_t section_end = section_header->sh_offset + section_header->sh_size;
89 (Elf32_Rel *)OffsetToPointer(section_header->sh_offset);
91 uint32 section_relocs_count = section_header->sh_size /
92 section_header->sh_entsize;
118 const Elf32_Shdr* section_header) {
120 uint32 start_file_offset = section_header->sh_offset;
121 uint32 end_file_offset = start_file_offset + section_header->sh_size
    [all...]
disassembler_elf_32_x86.h 48 const Elf32_Shdr *section_header,
disassembler_elf_32_arm.cc 297 const Elf32_Shdr *section_header,
318 size_t file_offset = section_header->sh_offset;
319 size_t section_end = section_header->sh_offset + section_header->sh_size;
322 (Elf32_Rel *)OffsetToPointer(section_header->sh_offset);
324 uint32 section_relocs_count = section_header->sh_size /
325 section_header->sh_entsize;
366 const Elf32_Shdr* section_header) {
368 uint32 start_file_offset = section_header->sh_offset;
369 uint32 end_file_offset = start_file_offset + section_header->sh_size
    [all...]
disassembler_elf_32_arm.h 67 const Elf32_Shdr *section_header,
disassembler_elf_32.h 173 const Elf32_Shdr *section_header,
176 const Elf32_Shdr *section_header,
  /frameworks/rs/cpu_ref/linkloader/include/
ELFSectionStrTab.h 31 ELFSectionHeaderTy const *section_header; member in class:ELFSectionStrTab
  /external/chromium_org/tools/relocation_packer/src/
elf_file.cc 121 const ELF::Shdr* section_header) {
123 VLOG(1) << " sh_addr = " << section_header->sh_addr;
124 VLOG(1) << " sh_offset = " << section_header->sh_offset;
125 VLOG(1) << " sh_size = " << section_header->sh_size;
126 VLOG(1) << " sh_addralign = " << section_header->sh_addralign;
214 const ELF::Shdr* section_header = ELF::getshdr(section); local
215 std::string name = elf_strptr(elf, string_index, section_header->sh_name);
216 VerboseLogSectionHeader(name, section_header);
219 if (section_header->sh_type == SHT_REL) {
222 if (section_header->sh_type == SHT_RELA)
309 ELF::Shdr* section_header = ELF::getshdr(section); local
425 const ELF::Shdr* section_header = ELF::getshdr(section); local
463 const ELF::Shdr* section_header = ELF::getshdr(section); local
    [all...]
  /art/runtime/
elf_file.cc 243 Elf32_Shdr* section_header = GetSectionHeader(i); local
244 if (section_header == nullptr) {
249 switch (section_header->sh_type) {
251 if (!CheckAndSet(section_header->sh_offset, "symtab",
258 if (!CheckAndSet(section_header->sh_offset, "dynsym",
266 if ((section_header->sh_flags & SHF_ALLOC) != 0) {
268 const char* header_name = GetString(*shstrtab_section_header, section_header->sh_name);
270 if (!CheckAndSet(section_header->sh_offset, "dynstr",
277 const char* header_name = GetString(*shstrtab_section_header, section_header->sh_name);
279 if (!CheckAndSet(section_header->sh_offset, "strtab"
349 Elf32_Shdr* section_header = GetSectionHeader(i); local
732 byte* section_header = GetSectionHeadersStart() + (i * GetHeader().e_shentsize); local
744 Elf32_Shdr* section_header = GetSectionHeader(i); local
    [all...]
  /frameworks/rs/cpu_ref/linkloader/include/impl/
ELFSectionStrTab.hxx 35 // Save section_header
36 st->section_header = sh;
57 out() << "ELF String Table: " << this->section_header->getName() << '\n';
  /external/chromium_org/chrome/browser/safe_browsing/
pe_image_reader_win.cc 284 const IMAGE_SECTION_HEADER* section_header = GetSectionHeaderAt(i); local
287 if (!GetStructureAt(section_header->PointerToRawData,
288 section_header->SizeOfRawData,
294 if (section_header->VirtualAddress > relative_address)
297 size_t address_offset = relative_address - section_header->VirtualAddress;
298 if (address_offset > section_header->Misc.VirtualSize)
301 return section_header;
pe_image_reader_win_unittest.cc 79 const IMAGE_SECTION_HEADER* section_header = local
82 section_header); local
  /external/chromium_org/base/win/
pe_image.cc 535 PIMAGE_SECTION_HEADER section_header = GetImageSectionFromAddr(address);
536 if (NULL == section_header)
545 section_header->VirtualAddress));
548 *on_disk_offset = section_header->PointerToRawData + offset_within_section;
  /external/lldb/source/Plugins/ObjectFile/PECOFF/
ObjectFilePECOFF.h 203 typedef struct section_header { struct in class:ObjectFilePECOFF

Completed in 350 milliseconds