Home
last modified time | relevance | path

Searched refs:oat_class (Results 1 – 4 of 4) sorted by relevance

/art/compiler/
Doat_test.cc127 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(i)); in TEST_F() local
134 oat_class->GetOatMethod(method_index), dex_file); in TEST_F()
138 oat_class->GetOatMethod(method_index), dex_file); in TEST_F()
Doat_writer.cc164 OatClass* oat_class = new OatClass(offset, status, num_methods); in InitOatClasses() local
165 oat_classes_.push_back(oat_class); in InitOatClasses()
166 offset += oat_class->SizeOf(); in InitOatClasses()
289 OatClass* oat_class = oat_classes_[oat_class_index]; in InitOatCodeMethod() local
292 oat_class->GetOatMethodOffsetsOffsetFromOatHeader(class_def_method_index); in InitOatCodeMethod()
389 oat_class->method_offsets_[class_def_method_index] = in InitOatCodeMethod()
/art/oatdump/
Doatdump.cc183 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_index); in GetOatCode() local
184 CHECK(oat_class != NULL); in GetOatCode()
186 return oat_class->GetOatMethod(method_index).GetCode(); in GetOatCode()
209 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(class_def_index)); in AddAllOffsets() local
216 AddOffsets(oat_class->GetOatMethod(class_method_index++)); in AddAllOffsets()
220 AddOffsets(oat_class->GetOatMethod(class_method_index++)); in AddAllOffsets()
256 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file.GetOatClass(class_def_index)); in DumpOatDexFile() local
257 CHECK(oat_class.get() != NULL); in DumpOatDexFile()
259 << oat_class->GetStatus() << ")\n"; in DumpOatDexFile()
262 DumpOatClass(indented_os, *oat_class.get(), *(dex_file.get()), class_def); in DumpOatDexFile()
[all …]
/art/runtime/
Dclass_linker.cc1513 const OatFile::OatClass* oat_class = oat_dex_file->GetOatClass(class_def_idx); in GetOatClass() local
1514 CHECK(oat_class != NULL) << dex_file.GetLocation() << " " << class_def_idx; in GetOatClass()
1515 return oat_class; in GetOatClass()
1576 oat_class(GetOatClass(*declaring_class->GetDexCache()->GetDexFile(), in GetOatMethodFor() local
1578 CHECK(oat_class.get() != NULL); in GetOatMethodFor()
1584 return oat_class->GetOatMethod(oat_method_index); in GetOatMethodFor()
1607 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(dex_file, class_def_idx)); in GetOatCodeFor() local
1608 CHECK(oat_class.get() != nullptr); in GetOatCodeFor()
1610 return oat_class->GetOatMethod(oat_method_idx).GetCode(); in GetOatCodeFor()
1646 UniquePtr<const OatFile::OatClass> oat_class(GetOatClass(dex_file, klass->GetDexClassDefIndex())); in FixupStaticTrampolines() local
[all …]