Lines Matching refs:m

77       ArtMethod *m = GetMethod();  in GetReflectionCaller()  local
78 if (m == nullptr) { in GetReflectionCaller()
82 } else if (m->IsRuntimeMethod()) { in GetReflectionCaller()
87 ObjPtr<mirror::Class> declaring_class = m->GetDeclaringClass(); in GetReflectionCaller()
99 && !m->IsClassInitializer()) { in GetReflectionCaller()
114 caller = m; in GetReflectionCaller()
554 ArtMethod* m, in MethodMatchesConstructor() argument
557 DCHECK(m != nullptr); in MethodMatchesConstructor()
558 return m->IsConstructor() && in MethodMatchesConstructor()
559 !m->IsStatic() && in MethodMatchesConstructor()
560 IsDiscoverable(public_only, hiddenapi_context, m); in MethodMatchesConstructor()
576 for (auto& m : h_klass->GetDirectMethods(kRuntimePointerSize)) { in Class_getDeclaredConstructorsInternal() local
577 constructor_count += MethodMatchesConstructor(&m, public_only, hiddenapi_context) ? 1u : 0u; in Class_getDeclaredConstructorsInternal()
586 for (auto& m : h_klass->GetDirectMethods(kRuntimePointerSize)) { in Class_getDeclaredConstructorsInternal() local
587 if (MethodMatchesConstructor(&m, public_only, hiddenapi_context)) { in Class_getDeclaredConstructorsInternal()
591 mirror::Constructor::CreateFromArtMethod<kRuntimePointerSize>(soa.Self(), &m); in Class_getDeclaredConstructorsInternal()
640 for (ArtMethod& m : klass->GetDeclaredMethods(kRuntimePointerSize)) { in Class_getDeclaredMethodsUnchecked()
641 uint32_t modifiers = m.GetAccessFlags(); in Class_getDeclaredMethodsUnchecked()
644 IsDiscoverable(public_only, hiddenapi_context, &m)) { in Class_getDeclaredMethodsUnchecked()
655 for (ArtMethod& m : klass->GetDeclaredMethods(kRuntimePointerSize)) { in Class_getDeclaredMethodsUnchecked()
656 uint32_t modifiers = m.GetAccessFlags(); in Class_getDeclaredMethodsUnchecked()
658 IsDiscoverable(public_only, hiddenapi_context, &m)) { in Class_getDeclaredMethodsUnchecked()
662 mirror::Method::CreateFromArtMethod<kRuntimePointerSize>(soa.Self(), &m); in Class_getDeclaredMethodsUnchecked()