Searched refs:oat_data_begin (Results 1 – 7 of 7) sorted by relevance
/art/runtime/ |
D | image.cc | 36 uint32_t oat_data_begin, in ImageHeader() argument 46 oat_data_begin_(oat_data_begin), in ImageHeader() 54 CHECK_EQ(oat_data_begin, RoundUp(oat_data_begin, kPageSize)); in ImageHeader() 57 CHECK_LE(oat_file_begin, oat_data_begin); in ImageHeader() 58 CHECK_LT(oat_data_begin, oat_data_end); in ImageHeader()
|
D | image.h | 40 uint32_t oat_data_begin,
|
/art/compiler/ |
D | elf_patcher.h | 43 const OatFile* oat_file, uintptr_t oat_data_begin, 57 const OatFile* oat_file, uintptr_t oat_data_begin, in Patch() argument 60 return ElfPatcher::Patch(driver, elf_file, oat_file, oat_data_begin, in Patch() 66 OatHeader* oat_header, uintptr_t oat_data_begin, in ElfPatcher() argument 69 oat_header_(oat_header), oat_data_begin_(oat_data_begin), get_image_address_(cb), in ElfPatcher()
|
D | elf_fixup.h | 33 static bool Fixup(File* file, uintptr_t oat_data_begin);
|
D | elf_fixup.cc | 31 bool ElfFixup::Fixup(File* file, uintptr_t oat_data_begin) { in Fixup() argument 38 Elf32_Off base_address = oat_data_begin - oatdata_address; in Fixup()
|
D | image_test.cc | 204 uint32_t oat_data_begin = ART_BASE_ADDRESS + (8 * KB); // page aligned in TEST_F() local 214 oat_data_begin, in TEST_F()
|
/art/dex2oat/ |
D | dex2oat.cc | 471 uintptr_t oat_data_begin; in CreateImageFile() local 480 oat_data_begin = image_writer.GetOatDataBegin(); in CreateImageFile() 492 if (!ElfFixup::Fixup(oat_file.get(), oat_data_begin)) { in CreateImageFile()
|