Searched refs:CreateFromArtMethod (Results 1 – 8 of 8) sorted by relevance
/art/runtime/mirror/ |
D | method.cc | 54 Method* Method::CreateFromArtMethod(Thread* self, ArtMethod* method) { in CreateFromArtMethod() function in art::mirror::Method 58 static_cast<AbstractMethod*>(ret)->CreateFromArtMethod(method); in CreateFromArtMethod() 95 Constructor* Constructor::CreateFromArtMethod(Thread* self, ArtMethod* method) { in CreateFromArtMethod() function in art::mirror::Constructor 99 static_cast<AbstractMethod*>(ret)->CreateFromArtMethod(method); in CreateFromArtMethod()
|
D | method.h | 31 static Method* CreateFromArtMethod(Thread* self, ArtMethod* method) 62 static Constructor* CreateFromArtMethod(Thread* self, ArtMethod* method)
|
D | abstract_method.cc | 24 bool AbstractMethod::CreateFromArtMethod(ArtMethod* method) { in CreateFromArtMethod() function in art::mirror::AbstractMethod
|
D | abstract_method.h | 37 bool CreateFromArtMethod(ArtMethod* method) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
|
/art/runtime/native/ |
D | java_lang_Class.cc | 271 mirror::Constructor::CreateFromArtMethod(soa.Self(), declared_constructor)); in Class_getDeclaredConstructorInternal() 301 auto* constructor = mirror::Constructor::CreateFromArtMethod(soa.Self(), &m); in Class_getDeclaredConstructorsInternal() 343 return soa.AddLocalReference<jobject>(mirror::Method::CreateFromArtMethod(soa.Self(), &m)); in Class_getDeclaredMethodInternal() 369 return soa.AddLocalReference<jobject>(mirror::Method::CreateFromArtMethod(soa.Self(), &m)); in Class_getDeclaredMethodInternal() 376 soa.AddLocalReference<jobject>(mirror::Method::CreateFromArtMethod(soa.Self(), result)) : in Class_getDeclaredMethodInternal() 408 auto* method = mirror::Method::CreateFromArtMethod(soa.Self(), &m); in Class_getDeclaredMethodsUnchecked() 421 auto* method = mirror::Method::CreateFromArtMethod(soa.Self(), &m); in Class_getDeclaredMethodsUnchecked()
|
/art/runtime/ |
D | proxy_test.cc | 68 mirror::Method::CreateFromArtMethod(soa.Self(), method))); in GenerateProxyClass() 73 mirror::Method::CreateFromArtMethod(soa.Self(), method))); in GenerateProxyClass() 79 mirror::Method::CreateFromArtMethod(soa.Self(), method))); in GenerateProxyClass() 85 mirror::Method::CreateFromArtMethod(soa.Self(), &m))); in GenerateProxyClass()
|
D | jni_internal.cc | 384 method = mirror::Constructor::CreateFromArtMethod(soa.Self(), m); in ToReflectedMethod() 386 method = mirror::Method::CreateFromArtMethod(soa.Self(), m); in ToReflectedMethod()
|
/art/runtime/entrypoints/quick/ |
D | quick_trampoline_entrypoints.cc | 765 mirror::Method::CreateFromArtMethod(soa.Self(), interface_method)); in artQuickProxyInvokeHandler()
|