Searched refs:CreateFromArtMethod (Results 1 - 10 of 10) sorted by relevance

/art/runtime/mirror/
H A Dabstract_method.cc25 bool AbstractMethod::CreateFromArtMethod(ArtMethod* method) { function in class:art::mirror::AbstractMethod
39 template bool AbstractMethod::CreateFromArtMethod<false>(ArtMethod* method);
40 template bool AbstractMethod::CreateFromArtMethod<true>(ArtMethod* method);
H A Dmethod.cc55 Method* Method::CreateFromArtMethod(Thread* self, ArtMethod* method) { function in class:art::mirror::Method
59 static_cast<AbstractMethod*>(ret)->CreateFromArtMethod<kTransactionActive>(method);
64 template Method* Method::CreateFromArtMethod<false>(Thread* self, ArtMethod* method);
65 template Method* Method::CreateFromArtMethod<true>(Thread* self, ArtMethod* method);
100 Constructor* Constructor::CreateFromArtMethod(Thread* self, ArtMethod* method) { function in class:art::mirror::Constructor
104 static_cast<AbstractMethod*>(ret)->CreateFromArtMethod<kTransactionActive>(method);
109 template Constructor* Constructor::CreateFromArtMethod<false>(Thread* self, ArtMethod* method);
110 template Constructor* Constructor::CreateFromArtMethod<true>(Thread* self, ArtMethod* method);
H A Dmethod.h32 static Method* CreateFromArtMethod(Thread* self, ArtMethod* method)
64 static Constructor* CreateFromArtMethod(Thread* self, ArtMethod* method)
H A Dabstract_method.h36 // Called from Constructor::CreateFromArtMethod, Method::CreateFromArtMethod.
38 bool CreateFromArtMethod(ArtMethod* method) SHARED_REQUIRES(Locks::mutator_lock_)
H A Dclass.cc1089 return mirror::Method::CreateFromArtMethod<kTransactionActive>(self, &m);
1115 return mirror::Method::CreateFromArtMethod<kTransactionActive>(self, &m);
1122 ? mirror::Method::CreateFromArtMethod<kTransactionActive>(self, result)
1148 ? mirror::Constructor::CreateFromArtMethod<kTransactionActive>(self, result)
1152 // mirror::Constructor::CreateFromArtMethod<kTransactionActive>(self, result)
/art/runtime/
H A Dproxy_test.cc68 mirror::Method::CreateFromArtMethod(soa.Self(), method)));
73 mirror::Method::CreateFromArtMethod(soa.Self(), method)));
79 mirror::Method::CreateFromArtMethod(soa.Self(), method)));
85 mirror::Method::CreateFromArtMethod(soa.Self(), &m)));
H A Ddex_file.cc1623 hs.NewHandle(mirror::Method::CreateFromArtMethod(self, annotation_method)));
1938 element_object = mirror::Constructor::CreateFromArtMethod(self, method);
1940 element_object = mirror::Method::CreateFromArtMethod(self, method);
H A Djni_internal.cc379 method = mirror::Constructor::CreateFromArtMethod(soa.Self(), m);
381 method = mirror::Method::CreateFromArtMethod(soa.Self(), m);
/art/runtime/native/
H A Djava_lang_Class.cc358 auto* constructor = mirror::Constructor::CreateFromArtMethod(soa.Self(), &m);
401 auto* method = mirror::Method::CreateFromArtMethod(soa.Self(), &m);
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc876 mirror::Method::CreateFromArtMethod(soa.Self(), interface_method));

Completed in 410 milliseconds