Searched refs:orig_method (Results 1 – 3 of 3) sorted by relevance
/art/openjdkjvmti/ |
D | ti_breakpoint.cc | 83 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/ |
D | dex_verify.cc | 390 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/ |
D | class.cc | 1766 static bool IsMethodPreferredOver(ArtMethod* orig_method, in IsMethodPreferredOver() argument 1773 if (orig_method == nullptr) { in IsMethodPreferredOver() 1785 DCHECK_IMPLIES(orig_method->IsDirect(), new_method->IsDirect()); in IsMethodPreferredOver() 1788 if (orig_method->IsSynthetic() && !new_method->IsSynthetic()) { in IsMethodPreferredOver()
|