Searched refs:new_methods (Results 1 – 6 of 6) sorted by relevance
/art/runtime/mirror/ |
D | class_ext.cc | 69 Handle<PointerArray> new_methods(hs.NewHandle<PointerArray>( in ExtendObsoleteArrays() local 71 if (new_methods.IsNull()) { in ExtendObsoleteArrays() 90 new_methods->Memcpy(0, in ExtendObsoleteArrays() 99 h_this->SetObsoleteArrays(new_methods.Get(), new_dex_caches.Get()); in ExtendObsoleteArrays()
|
D | class-inl.h | 242 inline void Class::SetMethodsPtr(LengthPrefixedArray<ArtMethod>* new_methods, in SetMethodsPtr() argument 246 SetMethodsPtrUnchecked(new_methods, num_direct, num_virtual); in SetMethodsPtr() 250 inline void Class::SetMethodsPtrUnchecked(LengthPrefixedArray<ArtMethod>* new_methods, in SetMethodsPtrUnchecked() argument 253 DCHECK_LE(num_direct + num_virtual, (new_methods == nullptr) ? 0 : new_methods->size()); in SetMethodsPtrUnchecked() 254 SetMethodsPtrInternal(new_methods); in SetMethodsPtrUnchecked() 261 inline void Class::SetMethodsPtrInternal(LengthPrefixedArray<ArtMethod>* new_methods) { in SetMethodsPtrInternal() argument 263 static_cast<uint64_t>(reinterpret_cast<uintptr_t>(new_methods))); in SetMethodsPtrInternal() 1122 LengthPrefixedArray<ArtMethod>* new_methods = visitor(methods); in FixupNativePointers() local 1123 if (methods != new_methods) { in FixupNativePointers() 1124 dest->SetMethodsPtrInternal(new_methods); in FixupNativePointers()
|
D | class.h | 688 void SetMethodsPtr(LengthPrefixedArray<ArtMethod>* new_methods, 693 void SetMethodsPtrUnchecked(LengthPrefixedArray<ArtMethod>* new_methods, 1302 ALWAYS_INLINE void SetMethodsPtrInternal(LengthPrefixedArray<ArtMethod>* new_methods)
|
/art/runtime/gc/space/ |
D | image_space.cc | 1317 mirror::MethodDexCacheType* new_methods = fixup_adapter.ForwardObject(methods); in RelocateInPlace() local 1318 if (methods != new_methods) { in RelocateInPlace() 1319 dex_cache->SetResolvedMethods(new_methods); in RelocateInPlace() 1322 auto pair = mirror::DexCache::GetNativePairPtrSize(new_methods, j, pointer_size); in RelocateInPlace() 1327 mirror::DexCache::SetNativePairPtrSize(new_methods, j, pair, pointer_size); in RelocateInPlace()
|
/art/runtime/ |
D | class_linker.h | 1233 LengthPrefixedArray<ArtMethod>* new_methods)
|
D | class_linker.cc | 3879 LengthPrefixedArray<ArtMethod>* new_methods) { in UpdateClassMethods() argument 3880 klass->SetMethodsPtrUnchecked(new_methods, in UpdateClassMethods()
|