Home
last modified time | relevance | path

Searched refs:boot_image_begin (Results 1 – 7 of 7) sorted by relevance

/art/runtime/
Dimage.cc45 uint32_t boot_image_begin, in ImageHeader() argument
58 boot_image_begin_(boot_image_begin), in ImageHeader()
Dimage.h138 uint32_t boot_image_begin,
Doat_file.cc2228 uint32_t boot_image_begin = dchecked_integral_cast<uint32_t>(reinterpret_cast<uintptr_t>( in InitializeRelocations() local
2231 const_cast<uint32_t&>(relocation) += boot_image_begin; in InitializeRelocations()
/art/runtime/gc/space/
Dimage_space.cc1146 uint32_t boot_image_begin = 0; in RelocateInPlace() local
1151 heap->GetBootImagesSize(&boot_image_begin, &boot_image_end, &boot_oat_begin, &boot_oat_end); in RelocateInPlace()
1152 if (boot_image_begin == boot_image_end) { in RelocateInPlace()
1160 const uint32_t boot_image_size = boot_oat_end - boot_image_begin; in RelocateInPlace()
1174 boot_image_begin, in RelocateInPlace()
/art/runtime/gc/
Dheap.cc4260 void Heap::GetBootImagesSize(uint32_t* boot_image_begin, in GetBootImagesSize() argument
4264 DCHECK(boot_image_begin != nullptr); in GetBootImagesSize()
4268 *boot_image_begin = 0u; in GetBootImagesSize()
4275 if (*boot_image_begin == 0 || image_begin < *boot_image_begin) { in GetBootImagesSize()
4276 *boot_image_begin = image_begin; in GetBootImagesSize()
Dheap.h689 void GetBootImagesSize(uint32_t* boot_image_begin,
/art/dex2oat/linker/
Dimage_writer.cc2702 uint32_t boot_image_begin = 0; in CreateHeader() local
2707 heap->GetBootImagesSize(&boot_image_begin, &boot_image_end, &boot_oat_begin, &boot_oat_end); in CreateHeader()
2723 boot_image_begin, in CreateHeader()
2724 boot_oat_end - boot_image_begin, in CreateHeader()