• Home
  • Raw
  • Download

Lines Matching refs:oat_dex_file

148       const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];  in Dump()  local
149 CHECK(oat_dex_file != NULL); in Dump()
150 DumpOatDexFile(os, *oat_dex_file); in Dump()
175 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; in GetOatCode() local
176 CHECK(oat_dex_file != NULL); in GetOatCode()
177 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile()); in GetOatCode()
183 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index); in GetOatCode()
200 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i]; in AddAllOffsets() local
201 CHECK(oat_dex_file != NULL); in AddAllOffsets()
202 UniquePtr<const DexFile> dex_file(oat_dex_file->OpenDexFile()); in AddAllOffsets()
209 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index)); in AddAllOffsets()
244 void DumpOatDexFile(std::ostream& os, const OatFile::OatDexFile& oat_dex_file) { in DumpOatDexFile() argument
246 os << StringPrintf("location: %s\n", oat_dex_file.GetDexFileLocation().c_str()); in DumpOatDexFile()
247 os << StringPrintf("checksum: 0x%08x\n", oat_dex_file.GetDexFileLocationChecksum()); in DumpOatDexFile()
248 UniquePtr<const DexFile> dex_file(oat_dex_file.OpenDexFile()); in DumpOatDexFile()
256 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file.GetOatClass(class_def_index)); in DumpOatDexFile()
741 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) { in Dump() local
742 CHECK(oat_dex_file != NULL); in Dump()
743 stats_.oat_dex_file_sizes.push_back(std::make_pair(oat_dex_file->GetDexFileLocation(), in Dump()
744 oat_dex_file->FileSize())); in Dump()