/art/runtime/gc/space/ |
image_space.cc | 276 for (const OatFile::OatDexFile* oat_dex_file : oat_file_->GetOatDexFiles()) { 277 const std::string& dex_file_location = oat_dex_file->GetDexFileLocation(); 283 if (dex_file_location_checksum != oat_dex_file->GetDexFileLocationChecksum()) { 286 << " (" << oat_dex_file->GetDexFileLocationChecksum() << " != "
|
/art/compiler/ |
oat_test.cc | 114 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file->GetLocation(), local 116 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum()); 127 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(i));
|
oat_writer.cc | 110 OatDexFile* oat_dex_file = new OatDexFile(offset, *dex_file); local 111 oat_dex_files_.push_back(oat_dex_file); 112 offset += oat_dex_file->SizeOf(); [all...] |
/art/oatdump/ |
oatdump.cc | 148 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; local 149 CHECK(oat_dex_file != NULL); 150 DumpOatDexFile(os, *oat_dex_file); 175 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; local 176 CHECK(oat_dex_file != NULL); 177 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile()); 183 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index); 200 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; local 201 CHECK(oat_dex_file != NULL); 202 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile()) [all...] |
/art/runtime/ |
oat_file.cc | 331 const OatFile::OatDexFile* oat_dex_file = it->second; local 333 oat_dex_file->GetDexFileLocationChecksum() == *dex_location_checksum) { 334 return oat_dex_file;
|
class_linker.cc | 682 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, local 685 if (oat_dex_file != NULL) { 720 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, &dex_location_checksum); local 721 if (oat_dex_file == NULL) { 726 uint32_t actual_dex_checksum = oat_dex_file->GetDexFileLocationChecksum(); 734 return oat_dex_file->OpenDexFile(); 833 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, &dex_location_checksum); local 858 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, &dex_location_checksum); local 865 const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i]; local 926 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, NULL); local 1044 const OatFile::OatDexFile* oat_dex_file = oat_file.GetOatDexFile(dex_file_location, NULL); local 1510 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation(), local 2550 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation(), local [all...] |
/art/runtime/native/ |
dalvik_system_DexFile.cc | 233 const art::OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(filename.c_str(), NULL); local 234 if (oat_dex_file == NULL) {
|