Lines Matching defs:oat_dex_file

250       const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
251 CHECK(oat_dex_file != nullptr);
252 if (!DumpOatDexFile(os, *oat_dex_file)) {
279 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
280 CHECK(oat_dex_file != nullptr);
282 std::unique_ptr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
284 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
292 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
308 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
309 CHECK(oat_dex_file != nullptr);
311 std::unique_ptr<const DexFile> dex_file(oat_dex_file->OpenDexFile(&error_msg));
313 LOG(WARNING) << "Failed to open dex file '" << oat_dex_file->GetDexFileLocation()
322 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);
361 bool DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) {
364 os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str());
365 os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum());
370 std::unique_ptr<const DexFile> dex_file(oat_dex_file.OpenDexFile(&error_msg));
381 uint32_t oat_class_offset = oat_dex_file.GetOatClassOffset(class_def_index);
382 const OatFile::OatClass oat_class = oat_dex_file.GetOatClass(class_def_index);
1058 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) {
1059 CHECK(oat_dex_file != nullptr);
1060 stats_.oat_dex_file_sizes.push_back(std::make_pair(oat_dex_file->GetDexFileLocation(),
1061 oat_dex_file->FileSize()));