Lines Matching defs:oat_dex_file
715 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location,
718 if (oat_dex_file != nullptr) {
719 return oat_dex_file;
768 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(next_name, nullptr, false);
770 if (oat_dex_file == nullptr) {
784 success = next_location_checksum == oat_dex_file->GetDexFileLocationChecksum();
788 const DexFile* dex_file = oat_dex_file->OpenDexFile(&error_msg);
801 << " OatDexFile::GetLocationChecksum()=" << oat_dex_file->GetDexFileLocationChecksum();
844 const OatFile::OatDexFile* oat_dex_file = FindOpenedOatDexFile(oat_location, dex_location,
847 oat_dex_file != nullptr ? oat_dex_file->GetOatFile() : nullptr);
1021 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location,
1023 if (oat_dex_file == nullptr) {
1029 uint32_t actual_dex_checksum = oat_dex_file->GetDexFileLocationChecksum();
1036 std::unique_ptr<const DexFile> dex_file(oat_dex_file->OpenDexFile(error_msg));
1143 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location,
1145 if (oat_dex_file == nullptr) {
1148 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
1151 oat_dex_file->GetDexFileLocation().c_str(),
1152 oat_dex_file->GetDexFileLocationChecksum());
1157 if (dex_location_checksum != oat_dex_file->GetDexFileLocationChecksum()) {
1160 oat_dex_file->GetDexFileLocationChecksum(),
1178 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_location, nullptr);
1179 if (oat_dex_file == nullptr) {
1185 dex_file.reset(oat_dex_file->OpenDexFile(error_msg));
1639 const OatFile::OatDexFile* oat_dex_file = oat_file.GetOatDexFile(dex_file_location.c_str(),
1641 CHECK(oat_dex_file != nullptr) << oat_file.GetLocation() << " " << dex_file_location;
1643 const DexFile* dex_file = oat_dex_file->OpenDexFile(&error_msg);
1650 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
2350 const OatFile::OatDexFile* oat_dex_file = FindOpenedOatDexFileForDexFile(dex_file);
2351 if (oat_dex_file == nullptr) {
2354 *oat_class = oat_dex_file->GetOatClass(class_def_idx);
3672 const OatFile::OatDexFile* oat_dex_file = FindOpenedOatDexFileForDexFile(dex_file);
3674 if (oat_dex_file == nullptr) {
3687 oat_file_class_status = oat_dex_file->GetOatClass(class_def_index).GetStatus();
6011 const OatFile::OatDexFile* oat_dex_file = class_linker->FindOpenedOatDexFileForDexFile(dex_file);
6012 if (oat_dex_file == nullptr) {
6016 const OatFile* oat_file = oat_dex_file->GetOatFile();