Home | History | Annotate | Download | only in runtime

Lines Matching refs:oat_dex_file

682     const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location,
685 if (oat_dex_file != NULL) {
720 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, &dex_location_checksum);
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);
834 if (oat_dex_file == NULL) {
840 const DexFile* result = oat_dex_file->OpenDexFile();
858 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, &dex_location_checksum);
859 if (oat_dex_file == NULL) {
865 const OatFile::OatDexFile* oat_dex_file = oat_dex_files[i];
867 << " contains contents for " << oat_dex_file->GetDexFileLocation();
871 bool dex_check = dex_location_checksum == oat_dex_file->GetDexFileLocationChecksum();
888 << " mismatch (" << std::hex << oat_dex_file->GetDexFileLocationChecksum()
926 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, NULL);
927 CHECK(oat_dex_file != NULL) << odex_filename << " " << dex_location;
929 return oat_dex_file->OpenDexFile();
1044 const OatFile::OatDexFile* oat_dex_file = oat_file.GetOatDexFile(dex_file_location, NULL);
1045 CHECK(oat_dex_file != NULL) << oat_file.GetLocation() << " " << dex_file_location;
1046 const DexFile* dex_file = oat_dex_file->OpenDexFile();
1052 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
1510 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation(),
1512 CHECK(oat_dex_file != NULL) << dex_file.GetLocation();
1513 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_idx);
2550 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation(),
2552 CHECK(oat_dex_file != NULL) << dex_file.GetLocation() << " " << PrettyClass(klass);
2555 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index));