Lines Matching refs:Begin

171     program_headers_start_ = Begin() + GetHeader().e_phoff;  in Setup()
251 Begin() + section_header->sh_offset) { in Setup()
255 << " != " << reinterpret_cast<void*>(Begin() + section_header->sh_offset); in Setup()
288 if (Begin() + offset >= End()) { in CheckAndSet()
293 *target = Begin() + offset; in CheckAndSet()
312 if (Begin() + section_header->sh_offset == source) { in CheckSectionsLinked()
318 } else if (Begin() + section_header->sh_offset == target) { in CheckSectionsLinked()
423 CHECK(map_.Begin() != nullptr) << file->GetPath(); in SetMap()
425 header_ = reinterpret_cast<Elf_Ehdr*>(map_.Begin()); in SetMap()
943 uint8_t* strings = Begin() + string_section.sh_offset; in GetString()
986 return reinterpret_cast<Elf_Rel*>(Begin() + section_header.sh_offset); in GetRelSectionStart()
1006 return reinterpret_cast<Elf_Rela*>(Begin() + section_header.sh_offset); in GetRelaSectionStart()
1153 (reservation != nullptr) ? reservation->Begin() : nullptr, in Load()
1170 static_cast<uintptr_t>(local_reservation.Begin() - vaddr_begin)); in Load()
1241 if (segment.Begin() != p_vaddr) { in Load()
1244 i, file->GetPath().c_str(), p_vaddr, segment.Begin()); in Load()
1265 if (segment.Begin() != p_vaddr) { in Load()
1268 i, file->GetPath().c_str(), p_vaddr, segment.Begin()); in Load()
1277 if ((dsptr < Begin() || dsptr >= End()) && !ValidPointer(dsptr)) { in Load()
1338 if (segment.Begin() <= start && start < segment.End()) { in ValidPointer()
1398 Begin() + patches_section->sh_offset, in ApplyOatPatchesTo()
1399 Begin() + patches_section->sh_offset + patches_section->sh_size, in ApplyOatPatchesTo()
1401 Begin() + target_section->sh_offset, in ApplyOatPatchesTo()
1402 Begin() + target_section->sh_offset + target_section->sh_size); in ApplyOatPatchesTo()
1499 memmove(Begin() + offset, in Strip()
1500 Begin() + old_sh->sh_offset, in Strip()
1508 memcpy(Begin() + offset, &section_headers[0], section_headers_size_in_bytes); in Strip()
1715 uint8_t* header = map.Begin(); in Open()
1764 uint8_t* header = map.Begin(); in Open()
1818 uint8_t* ElfFile::Begin() const { in Begin() function in art::ElfFile
1819 DELEGATE_TO_IMPL(Begin); in Begin()