Lines Matching refs:oat_class

170       const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);  in WalkOatDexFile()  local
171 OatClassType type = oat_class.GetType(); in WalkOatDexFile()
175 WalkOatClass(oat_class, *dex_file.get(), class_def, callback); in WalkOatDexFile()
186 void WalkOatClass(const OatFile::OatClass& oat_class, const DexFile& dex_file, in WalkOatClass() argument
198 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx); in WalkOatClass()
205 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_idx); in WalkOatClass()
514 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in GetQuickOatCode() local
516 return oat_class.GetOatMethod(method_index).GetQuickCode(); in GetQuickOatCode()
544 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in AddAllOffsets() local
551 AddOffsets(oat_class.GetOatMethod(class_method_index++)); in AddAllOffsets()
555 AddOffsets(oat_class.GetOatMethod(class_method_index++)); in AddAllOffsets()
611 const OatFile::OatClass oat_class = oat_dex_file.GetOatClass(class_def_index); in DumpOatDexFile() local
614 << " (" << oat_class.GetStatus() << ")" in DumpOatDexFile()
615 << " (" << oat_class.GetType() << ")\n"; in DumpOatDexFile()
620 if (!DumpOatClass(indented_os, oat_class, *(dex_file.get()), class_def, &stop_analysis)) { in DumpOatDexFile()
720 bool DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file, in DumpOatClass() argument
733 if (!DumpOatMethod(os, class_def, class_method_index, oat_class, dex_file, in DumpOatClass()
746 if (!DumpOatMethod(os, class_def, class_method_index, oat_class, dex_file, in DumpOatClass()
770 const OatFile::OatClass& oat_class, const DexFile& dex_file, in DumpOatMethod() argument
792 uint32_t oat_method_offsets_offset = oat_class.GetOatMethodOffsetsOffset(class_method_index); in DumpOatMethod()
793 const OatMethodOffsets* oat_method_offsets = oat_class.GetOatMethodOffsets(class_method_index); in DumpOatMethod()
794 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); in DumpOatMethod()