Searched defs:boot_image_begin (Results 1 - 4 of 4) sorted by relevance

/art/runtime/
H A Dimage.cc38 uint32_t boot_image_begin,
54 boot_image_begin_(boot_image_begin),
29 ImageHeader(uint32_t image_begin, uint32_t image_size, ImageSection* sections, uint32_t image_roots, uint32_t oat_checksum, uint32_t oat_file_begin, uint32_t oat_data_begin, uint32_t oat_data_end, uint32_t oat_file_end, uint32_t boot_image_begin, uint32_t boot_image_size, uint32_t boot_oat_begin, uint32_t boot_oat_size, uint32_t pointer_size, bool compile_pic, bool is_pic, StorageMode storage_mode, size_t data_size) argument
/art/runtime/gc/space/
H A Dimage_space.cc973 uint32_t boot_image_begin = 0; local
979 heap->GetBootImagesSize(&boot_image_begin, &boot_image_end, &boot_oat_begin, &boot_oat_end);
980 if (boot_image_begin == boot_image_end) {
988 const uint32_t boot_image_size = boot_image_end - boot_image_begin;
1008 boot_image_begin,
/art/compiler/
H A Dimage_writer.cc1526 uint32_t boot_image_begin = 0; local
1531 heap->GetBootImagesSize(&boot_image_begin, &boot_image_end, &boot_oat_begin, &boot_oat_end);
1544 boot_image_begin, local
1545 boot_image_end - boot_image_begin,
/art/runtime/gc/
H A Dheap.cc4129 void Heap::GetBootImagesSize(uint32_t* boot_image_begin, argument
4133 DCHECK(boot_image_begin != nullptr);
4137 *boot_image_begin = 0u;
4144 if (*boot_image_begin == 0 || image_begin < *boot_image_begin) {
4145 *boot_image_begin = image_begin;

Completed in 57 milliseconds