Searched refs:section_header (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/courgette/
H A Ddisassembler_elf_32.cc108 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 local
321 ParseProgbitsSection( const Elf32_Shdr *section_header, std::vector<size_t>::iterator* current_abs_offset, std::vector<size_t>::iterator end_abs_offset, ScopedVector<TypedRVA>::iterator* current_rel, ScopedVector<TypedRVA>::iterator end_rel, AssemblyProgram* program) argument
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...]
H A Ddisassembler_elf_32_x86.cc64 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
63 ParseRelocationSection( const Elf32_Shdr *section_header, AssemblyProgram* program) argument
117 ParseRel32RelocsFromSection( const Elf32_Shdr* section_header) argument
[all...]
H A Ddisassembler_elf_32_arm.cc297 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
296 ParseRelocationSection( const Elf32_Shdr *section_header, AssemblyProgram* program) argument
365 ParseRel32RelocsFromSection( const Elf32_Shdr* section_header) argument
[all...]
H A Ddisassembler_elf_32_arm.h67 const Elf32_Shdr *section_header,
H A Ddisassembler_elf_32_x86.h48 const Elf32_Shdr *section_header,
H A Ddisassembler_elf_32.h173 const Elf32_Shdr *section_header,
176 const Elf32_Shdr *section_header,
/external/chromium_org/tools/relocation_packer/src/
H A Delf_file.cc93 const Elf32_Shdr* section_header) {
95 VLOG(" sh_addr = %u\n", section_header->sh_addr);
96 VLOG(" sh_offset = %u\n", section_header->sh_offset);
97 VLOG(" sh_size = %u\n", section_header->sh_size);
98 VLOG(" sh_addralign = %u\n", section_header->sh_addralign);
179 const Elf32_Shdr* section_header = elf32_getshdr(section); local
180 std::string name = elf_strptr(elf_, string_index, section_header->sh_name);
181 VerboseLogSectionHeader(name, section_header);
190 if (section_header->sh_offset == dynamic_program_header->p_offset) {
200 CHECK(section_header
92 VerboseLogSectionHeader(const std::string& section_name, const Elf32_Shdr* section_header) argument
293 Elf32_Shdr* section_header = elf32_getshdr(section); local
468 Elf32_Shdr* section_header = elf32_getshdr(section); local
542 Elf32_Shdr* section_header = elf32_getshdr(section); local
640 const Elf32_Shdr* section_header = elf32_getshdr(section); local
761 Elf32_Shdr* section_header = elf32_getshdr(rel_dyn_section_); local
851 Elf32_Shdr* section_header = elf32_getshdr(android_rel_dyn_section_); local
937 Elf32_Shdr* section_header = elf32_getshdr(rel_dyn_section_); local
[all...]
/external/chromium_org/chrome/browser/safe_browsing/
H A Dpe_image_reader_win.cc284 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;
H A Dpe_image_reader_win_unittest.cc79 const IMAGE_SECTION_HEADER* section_header = local
82 section_header); local
/external/chromium_org/base/win/
H A Dpe_image.cc533 PIMAGE_SECTION_HEADER section_header = GetImageSectionFromAddr(address);
534 if (NULL == section_header)
543 section_header->VirtualAddress));
546 *on_disk_offset = section_header->PointerToRawData + offset_within_section;
/external/lldb/source/Plugins/ObjectFile/PECOFF/
H A DObjectFilePECOFF.h203 typedef struct section_header { struct in class:ObjectFilePECOFF

Completed in 959 milliseconds