Lines Matching refs:oat_dex_file

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