Searched defs:AllocArtMethodArray (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Dclass_linker.cc2297 ArtMethod* ClassLinker::AllocArtMethodArray(Thread* self, size_t length) { function in class:art::ClassLinker
2339 klass->SetDirectMethodsPtr(AllocArtMethodArray(self, it.NumDirectMethods()));
2343 klass->SetVirtualMethodsPtr(AllocArtMethodArray(self, it.NumVirtualMethods()));
3317 auto* directs = AllocArtMethodArray(self, 1);
3318 // Currently AllocArtMethodArray cannot return null, but the OOM logic is left there in case we
3333 auto* virtuals = AllocArtMethodArray(self, num_virtual_methods);
3334 // Currently AllocArtMethodArray cannot return null, but the OOM logic is left there in case we
5887 ArtMethod* method = AllocArtMethodArray(Thread::Current(), 1);

Completed in 62 milliseconds