Lines Matching refs:oat_class
222 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in WalkOatDexFile() local
223 OatClassType type = oat_class.GetType(); in WalkOatDexFile()
227 WalkOatClass(oat_class, *dex_file, class_def_index); in WalkOatDexFile()
238 void WalkOatClass(const OatFile::OatClass& oat_class, in WalkOatClass() argument
252 WalkOatMethod(oat_class.GetOatMethod(class_method_idx++), in WalkOatClass()
596 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in GetQuickOatCode() local
598 return oat_class.GetOatMethod(method_index).GetQuickCode(); in GetQuickOatCode()
775 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in AddAllOffsets() local
782 AddOffsets(oat_class.GetOatMethod(class_method_index++)); in AddAllOffsets()
786 AddOffsets(oat_class.GetOatMethod(class_method_index++)); in AddAllOffsets()
984 const OatFile::OatClass oat_class = oat_dex_file.GetOatClass(class_def_index); in DumpOatDexFile() local
987 << " (" << oat_class.GetStatus() << ")" in DumpOatDexFile()
988 << " (" << oat_class.GetType() << ")\n"; in DumpOatDexFile()
993 if (!DumpOatClass(&vios, oat_class, *dex_file, class_def, &stop_analysis)) { in DumpOatDexFile()
1087 const OatFile::OatClass& oat_class, const DexFile& dex_file, in DumpOatClass() argument
1100 if (!DumpOatMethod(vios, class_def, class_method_index, oat_class, dex_file, in DumpOatClass()
1113 if (!DumpOatMethod(vios, class_def, class_method_index, oat_class, dex_file, in DumpOatClass()
1138 const OatFile::OatClass& oat_class, const DexFile& dex_file, in DumpOatMethod() argument
1155 uint32_t oat_method_offsets_offset = oat_class.GetOatMethodOffsetsOffset(class_method_index); in DumpOatMethod()
1156 const OatMethodOffsets* oat_method_offsets = oat_class.GetOatMethodOffsets(class_method_index); in DumpOatMethod()
1157 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); in DumpOatMethod()