Home
last modified time | relevance | path

Searched refs:orig_method (Results 1 – 3 of 3) sorted by relevance

/art/openjdkjvmti/
Dti_breakpoint.cc83 art::ArtMethod* orig_method = it.GetMethod(); in VisitReflectiveTargets() local
85 orig_method, JvmtiBreakpointReflectionSource(it.GetLocation(), orig_method)); in VisitReflectiveTargets()
86 if (am != orig_method) { in VisitReflectiveTargets()
/art/dexlayout/
Ddex_verify.cc390 dex_ir::MethodAnnotation* orig_method = (*orig)[i].get(); in VerifyMethodAnnotations() local
392 if (orig_method->GetMethodId()->GetIndex() != output_method->GetMethodId()->GetIndex()) { in VerifyMethodAnnotations()
396 orig_method->GetMethodId()->GetIndex(), in VerifyMethodAnnotations()
400 if (!VerifyAnnotationSet(orig_method->GetAnnotationSetItem(), in VerifyMethodAnnotations()
818 dex_ir::MethodItem* orig_method = &(*orig)[i]; in VerifyMethods() local
820 if (orig_method->GetMethodId()->GetIndex() != output_method->GetMethodId()->GetIndex()) { in VerifyMethods()
823 orig_method->GetMethodId()->GetIndex(), in VerifyMethods()
827 if (orig_method->GetAccessFlags() != output_method->GetAccessFlags()) { in VerifyMethods()
831 orig_method->GetAccessFlags(), in VerifyMethods()
835 if (!VerifyCode(orig_method->GetCodeItem(), output_method->GetCodeItem(), error_msg)) { in VerifyMethods()
/art/runtime/mirror/
Dclass.cc1421 static bool IsMethodPreferredOver(ArtMethod* orig_method, in IsMethodPreferredOver() argument
1428 if (orig_method == nullptr) { in IsMethodPreferredOver()
1440 DCHECK(!orig_method->IsDirect() || new_method->IsDirect()); in IsMethodPreferredOver()
1443 if (orig_method->IsSynthetic() && !new_method->IsSynthetic()) { in IsMethodPreferredOver()