Lines Matching refs:oat_class

292           const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index);  in GetQuickOatCode()  local
294 return oat_class.GetOatMethod(method_index).GetQuickCode(); in GetQuickOatCode()
322 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in AddAllOffsets() local
329 AddOffsets(oat_class.GetOatMethod(class_method_index++)); in AddAllOffsets()
333 AddOffsets(oat_class.GetOatMethod(class_method_index++)); in AddAllOffsets()
382 const OatFile::OatClass oat_class = oat_dex_file.GetOatClass(class_def_index); in DumpOatDexFile() local
385 << " (" << oat_class.GetStatus() << ")" in DumpOatDexFile()
386 << " (" << oat_class.GetType() << ")\n"; in DumpOatDexFile()
390 if (!DumpOatClass(indented_os, oat_class, *(dex_file.get()), class_def)) { in DumpOatDexFile()
408 bool DumpOatClass(std::ostream& os, const OatFile::OatClass& oat_class, const DexFile& dex_file, in DumpOatClass() argument
420 if (!DumpOatMethod(os, class_def, class_method_index, oat_class, dex_file, in DumpOatClass()
429 if (!DumpOatMethod(os, class_def, class_method_index, oat_class, dex_file, in DumpOatClass()
449 const OatFile::OatClass& oat_class, const DexFile& dex_file, in DumpOatMethod() argument
472 uint32_t oat_method_offsets_offset = oat_class.GetOatMethodOffsetsOffset(class_method_index); in DumpOatMethod()
473 const OatMethodOffsets* oat_method_offsets = oat_class.GetOatMethodOffsets(class_method_index); in DumpOatMethod()
474 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); in DumpOatMethod()