Lines Matching defs:oat_dex_file

699     const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location,
702 if (oat_dex_file != nullptr) {
703 return oat_dex_file;
752 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(next_name, nullptr, false);
754 if (oat_dex_file == nullptr) {
768 success = next_location_checksum == oat_dex_file->GetDexFileLocationChecksum();
772 const DexFile* dex_file = oat_dex_file->OpenDexFile(&error_msg);
785 << " OatDexFile::GetLocationChecksum()=" << oat_dex_file->GetDexFileLocationChecksum();
828 const OatFile::OatDexFile* oat_dex_file = FindOpenedOatDexFile(oat_location, dex_location,
831 oat_dex_file != nullptr ? oat_dex_file->GetOatFile() : nullptr);
1005 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location,
1007 if (oat_dex_file == nullptr) {
1013 uint32_t actual_dex_checksum = oat_dex_file->GetDexFileLocationChecksum();
1020 std::unique_ptr<const DexFile> dex_file(oat_dex_file->OpenDexFile(error_msg));
1123 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location,
1125 if (oat_dex_file == nullptr) {
1128 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
1131 oat_dex_file->GetDexFileLocation().c_str(),
1132 oat_dex_file->GetDexFileLocationChecksum());
1137 if (dex_location_checksum != oat_dex_file->GetDexFileLocationChecksum()) {
1140 oat_dex_file->GetDexFileLocationChecksum(),
1158 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, nullptr);
1159 if (oat_dex_file == nullptr) {
1165 dex_file.reset(oat_dex_file->OpenDexFile(error_msg));
1623 const OatFile::OatDexFile* oat_dex_file = oat_file.GetOatDexFile(dex_file_location.c_str(),
1625 CHECK(oat_dex_file != nullptr) << oat_file.GetLocation() << " " << dex_file_location;
1627 const DexFile* dex_file = oat_dex_file->OpenDexFile(&error_msg);
1634 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
2323 const OatFile::OatDexFile* oat_dex_file = FindOpenedOatDexFileForDexFile(dex_file);
2324 if (oat_dex_file == nullptr) {
2327 *oat_class = oat_dex_file->GetOatClass(class_def_idx);
3623 const OatFile::OatDexFile* oat_dex_file = FindOpenedOatDexFileForDexFile(dex_file);
3625 if (oat_dex_file == nullptr) {
3630 oat_file_class_status = oat_dex_file->GetOatClass(class_def_index).GetStatus();