Searched refs:sh_offset (Results 1 – 3 of 3) sorted by relevance
/art/runtime/ |
D | elf_file.cc | 218 if (!CheckAndSet(section_header->sh_offset, "symtab", in Setup() 225 if (!CheckAndSet(section_header->sh_offset, "dynsym", in Setup() 237 if (!CheckAndSet(section_header->sh_offset, "dynstr", in Setup() 246 if (!CheckAndSet(section_header->sh_offset, "strtab", in Setup() 256 Begin() + section_header->sh_offset) { in Setup() 260 << " != " << reinterpret_cast<void*>(Begin() + section_header->sh_offset); in Setup() 266 if (!CheckAndSet(section_header->sh_offset, "hash section", in Setup() 318 if (Begin() + section_header->sh_offset == source) { in CheckSectionsLinked() 324 } else if (Begin() + section_header->sh_offset == target) { in CheckSectionsLinked() 952 uint8_t* strings = Begin() + string_section.sh_offset; in GetString() [all …]
|
D | elf.h | 1212 Elf32_Off sh_offset; // File offset of section data, in bytes member 1226 Elf64_Off sh_offset; member
|
/art/compiler/linker/ |
D | elf_builder.h | 144 CHECK_EQ(header_.sh_offset, 0u); in Start() 145 header_.sh_offset = owner_->AlignFileOffset(align); in Start() 163 DCHECK_GE(file_offset, (off_t)header_.sh_offset); in GetPosition() 164 return file_offset - header_.sh_offset; in GetPosition() 645 if (section->header_.sh_offset == 0) { in End() 962 load.p_offset = shdr.sh_offset; in MakeProgramHeaders() 972 Elf_Word size = shdr.sh_offset + shdr.sh_size - prev.p_offset; in MakeProgramHeaders() 991 phdr.p_offset = shdr.sh_offset; in MakeProgramHeaders()
|