Lines Matching refs:oat_file
142 explicit OatDumper(const OatFile& oat_file, OatDumperOptions* options) in OatDumper() argument
143 : oat_file_(oat_file), in OatDumper()
144 oat_dex_files_(oat_file.GetOatDexFiles()), in OatDumper()
149 oat_file.Begin()))) { in OatDumper()
1044 const OatFile* oat_file = class_linker->FindOpenedOatFileFromOatLocation(oat_location); in Dump() local
1045 if (oat_file == nullptr) { in Dump()
1046 oat_file = OatFile::Open(oat_location, oat_location, nullptr, nullptr, false, &error_msg); in Dump()
1047 if (oat_file == nullptr) { in Dump()
1054 stats_.oat_file_bytes = oat_file->Size(); in Dump()
1056 oat_dumper_.reset(new OatDumper(*oat_file, oat_dumper_options_.release())); in Dump()
1058 for (const OatFile::OatDexFile* oat_dex_file : oat_file->GetOatDexFiles()) { in Dump()
1778 OatFile* oat_file = in oatdump() local
1780 if (oat_file == nullptr) { in oatdump()
1784 OatDumper oat_dumper(*oat_file, oat_dumper_options.release()); in oatdump()