Searched refs:prototype (Results 1 – 2 of 2) sorted by relevance
/art/runtime/ |
D | class_linker.cc | 4205 auto* prototype = h_methods->Get(i)->GetArtMethod(); in CreateProxyClass() local 4206 CreateProxyMethod(klass, prototype, virtual_method); in CreateProxyClass() 4208 DCHECK(prototype->GetDeclaringClass() != nullptr); in CreateProxyClass() 4254 auto* prototype = h_methods->Get(i++)->GetArtMethod(); in CreateProxyClass() local 4255 CheckProxyMethod(virtual_method, prototype); in CreateProxyClass() 4337 void ClassLinker::CreateProxyMethod(Handle<mirror::Class> klass, ArtMethod* prototype, in CreateProxyMethod() argument 4341 auto* dex_cache = prototype->GetDeclaringClass()->GetDexCache(); in CreateProxyMethod() 4343 if (dex_cache->GetResolvedMethod(prototype->GetDexMethodIndex(), image_pointer_size_) != in CreateProxyMethod() 4344 prototype) { in CreateProxyMethod() 4346 prototype->GetDexMethodIndex(), prototype, image_pointer_size_); in CreateProxyMethod() [all …]
|
D | class_linker.h | 1000 void CheckProxyMethod(ArtMethod* method, ArtMethod* prototype) const 1019 void CreateProxyMethod(Handle<mirror::Class> klass, ArtMethod* prototype, ArtMethod* out)
|