Searched refs:oat_class (Results 1 – 7 of 7) sorted by relevance
/art/test/661-oat-writer-layout/ |
D | oat_writer_layout.cc | 58 OatFile::OatClass oat_class = OatFile::FindOatClass(*klass_ptr->GetDexCache()->GetDexFile(), in Java_Main_hasOatCompiledCode() local 66 OatClassType type = oat_class.GetType(); in Java_Main_hasOatCompiledCode()
|
/art/dex2oat/linker/ |
D | oat_writer.cc | 1042 OatClass* oat_class; member 1198 OatClass* oat_class = &writer_->oat_classes_[oat_class_index_]; in VisitMethod() local 1199 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() 1237 oat_class, in VisitMethod() 1304 OatClass* oat_class = method_data.oat_class; in VisitMethod() local 1355 DCHECK_LT(method_offsets_index_, oat_class->method_headers_.size()); in VisitMethod() 1356 OatQuickMethodHeader* method_header = &oat_class->method_headers_[method_offsets_index_]; in VisitMethod() 1405 DCHECK_LT(method_offsets_index_, oat_class->method_offsets_.size()); in VisitMethod() 1406 OatMethodOffsets* offsets = &oat_class->method_offsets_[method_offsets_index_]; in VisitMethod() 1487 OatClass* oat_class = &writer_->oat_classes_[oat_class_index_]; in VisitMethod() local [all …]
|
D | oat_writer_test.cc | 485 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(accessor.GetClassDefIndex()); in TEST_F() local 486 CHECK_EQ(ClassStatus::kNotReady, oat_class.GetStatus()) << descriptor; in TEST_F() 488 oat_class.GetType()) << descriptor; in TEST_F() 492 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file); in TEST_F() 501 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file); in TEST_F()
|
/art/oatdump/ |
D | oatdump.cc | 251 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in WalkOatDexFile() local 252 OatClassType type = oat_class.GetType(); in WalkOatDexFile() 256 WalkOatClass(oat_class, *dex_file, class_def_index); in WalkOatDexFile() 267 void WalkOatClass(const OatFile::OatClass& oat_class, in WalkOatClass() argument 275 WalkOatMethod(oat_class.GetOatMethod(class_method_idx++), in WalkOatClass() 721 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in GetQuickOatCode() local 742 return oat_class.GetOatMethod(oat_method_index).GetQuickCode(); in GetQuickOatCode() 854 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(accessor.GetClassDefIndex()); in AddAllOffsets() local 858 AddOffsets(oat_class.GetOatMethod(class_method_index)); in AddAllOffsets() 934 const OatFile::OatClass oat_class = oat_dex_file.GetOatClass(class_def_index); in DumpOatDexFile() local [all …]
|
/art/runtime/ |
D | art_method.cc | 455 OatFile::OatClass oat_class = OatFile::FindOatClass(*dex_file, in FindOatMethodFromDexFileFor() local 461 return oat_class.GetOatMethod(oat_method_index); in FindOatMethodFromDexFileFor() 503 OatFile::OatClass oat_class = OatFile::FindOatClass(declaring_class->GetDexFile(), in FindOatMethodFor() local 509 return oat_class.GetOatMethod(oat_method_index); in FindOatMethodFor()
|
D | class_linker.cc | 3643 OatFile::OatClass oat_class = OatFile::FindOatClass(dex_file, in FixupStaticTrampolines() local 3660 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); in FixupStaticTrampolines() 3706 const OatFile::OatClass* oat_class, in LinkCode() argument 3724 if (oat_class != nullptr) { in LinkCode() 3727 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); in LinkCode() 3879 const OatFile::OatClass oat_class = (runtime->IsStarted() && !runtime->IsAotCompiler()) in LoadClass() local 3882 const OatFile::OatClass* oat_class_ptr = has_oat_class ? &oat_class : nullptr; in LoadClass() 5482 const OatFile::OatClass oat_class = (runtime->IsStarted() && !runtime->IsAotCompiler()) in InitializeClass() local 5485 if (oat_class.GetStatus() < ClassStatus::kSuperclassValidated && in InitializeClass()
|
/art/dex2oat/ |
D | dex2oat_test.cc | 554 OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in CheckResult() local 555 EXPECT_EQ(oat_class.GetType(), OatClassType::kOatClassNoneCompiled); in CheckResult()
|