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 | 1010 OatClass* oat_class; member 1166 OatClass* oat_class = &writer_->oat_classes_[oat_class_index_]; in VisitMethod() local 1167 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); in VisitMethod() 1205 oat_class, in VisitMethod() 1272 OatClass* oat_class = method_data.oat_class; in VisitMethod() local 1323 DCHECK_LT(method_offsets_index_, oat_class->method_headers_.size()); in VisitMethod() 1324 OatQuickMethodHeader* method_header = &oat_class->method_headers_[method_offsets_index_]; in VisitMethod() 1373 DCHECK_LT(method_offsets_index_, oat_class->method_offsets_.size()); in VisitMethod() 1374 OatMethodOffsets* offsets = &oat_class->method_offsets_[method_offsets_index_]; in VisitMethod() 1455 OatClass* oat_class = &writer_->oat_classes_[oat_class_index_]; in VisitMethod() local [all …]
|
D | oat_writer_test.cc | 442 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(accessor.GetClassDefIndex()); in TEST_F() local 443 CHECK_EQ(ClassStatus::kNotReady, oat_class.GetStatus()) << descriptor; in TEST_F() 445 oat_class.GetType()) << descriptor; in TEST_F() 449 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file); in TEST_F() 458 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file); in TEST_F()
|
/art/oatdump/ |
D | oatdump.cc | 254 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in WalkOatDexFile() local 255 OatClassType type = oat_class.GetType(); in WalkOatDexFile() 259 WalkOatClass(oat_class, *dex_file, class_def_index); in WalkOatDexFile() 270 void WalkOatClass(const OatFile::OatClass& oat_class, in WalkOatClass() argument 278 WalkOatMethod(oat_class.GetOatMethod(class_method_idx++), in WalkOatClass() 718 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in GetQuickOatCode() local 739 return oat_class.GetOatMethod(oat_method_index).GetQuickCode(); in GetQuickOatCode() 851 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(accessor.GetClassDefIndex()); in AddAllOffsets() local 855 AddOffsets(oat_class.GetOatMethod(class_method_index)); in AddAllOffsets() 931 const OatFile::OatClass oat_class = oat_dex_file.GetOatClass(class_def_index); in DumpOatDexFile() local [all …]
|
/art/runtime/ |
D | art_method.cc | 464 OatFile::OatClass oat_class = OatFile::FindOatClass(*dex_file, in FindOatMethodFromDexFileFor() local 470 return oat_class.GetOatMethod(oat_method_index); in FindOatMethodFromDexFileFor() 512 OatFile::OatClass oat_class = OatFile::FindOatClass(declaring_class->GetDexFile(), in FindOatMethodFor() local 518 return oat_class.GetOatMethod(oat_method_index); in FindOatMethodFor()
|
D | class_linker.cc | 3434 OatFile::OatClass oat_class = OatFile::FindOatClass(dex_file, in FixupStaticTrampolines() local 3446 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); in FixupStaticTrampolines() 3477 const OatFile::OatClass* oat_class, in LinkCode() argument 3487 if (oat_class != nullptr) { in LinkCode() 3490 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(class_def_method_index); in LinkCode() 3642 const OatFile::OatClass oat_class = (runtime->IsStarted() && !runtime->IsAotCompiler()) in LoadClass() local 3645 const OatFile::OatClass* oat_class_ptr = has_oat_class ? &oat_class : nullptr; in LoadClass() 5241 const OatFile::OatClass oat_class = (runtime->IsStarted() && !runtime->IsAotCompiler()) in InitializeClass() local 5244 if (oat_class.GetStatus() < ClassStatus::kSuperclassValidated && in InitializeClass()
|
/art/dex2oat/ |
D | dex2oat_test.cc | 540 OatFile::OatClass oat_class = oat_dex_file->GetOatClass(class_def_index); in CheckResult() local 541 EXPECT_EQ(oat_class.GetType(), OatClassType::kOatClassNoneCompiled); in CheckResult()
|