Home
last modified time | relevance | path

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

/art/runtime/
Dimage.cc36 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()
Dimage.h40 uint32_t oat_data_begin,
/art/compiler/
Delf_patcher.h43 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()
Delf_fixup.h33 static bool Fixup(File* file, uintptr_t oat_data_begin);
Delf_fixup.cc31 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()
Dimage_test.cc204 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/
Ddex2oat.cc471 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()