Searched refs:new_methods (Results 1 – 7 of 7) 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 | 226 inline void Class::SetMethodsPtr(LengthPrefixedArray<ArtMethod>* new_methods, in SetMethodsPtr() argument 230 SetMethodsPtrUnchecked(new_methods, num_direct, num_virtual); in SetMethodsPtr() 234 inline void Class::SetMethodsPtrUnchecked(LengthPrefixedArray<ArtMethod>* new_methods, in SetMethodsPtrUnchecked() argument 237 DCHECK_LE(num_direct + num_virtual, (new_methods == nullptr) ? 0 : new_methods->size()); in SetMethodsPtrUnchecked() 238 SetMethodsPtrInternal(new_methods); in SetMethodsPtrUnchecked() 245 inline void Class::SetMethodsPtrInternal(LengthPrefixedArray<ArtMethod>* new_methods) { in SetMethodsPtrInternal() argument 247 static_cast<uint64_t>(reinterpret_cast<uintptr_t>(new_methods))); in SetMethodsPtrInternal() 1077 LengthPrefixedArray<ArtMethod>* new_methods = visitor(methods); in FixupNativePointers() local 1078 if (methods != new_methods) { in FixupNativePointers() 1079 dest->SetMethodsPtrInternal(new_methods); in FixupNativePointers()
|
D | class.h | 732 void SetMethodsPtr(LengthPrefixedArray<ArtMethod>* new_methods, 737 void SetMethodsPtrUnchecked(LengthPrefixedArray<ArtMethod>* new_methods, 1347 ALWAYS_INLINE void SetMethodsPtrInternal(LengthPrefixedArray<ArtMethod>* new_methods)
|
/art/runtime/ |
D | art_method-inl.h | 478 ArtMethod** new_methods = visitor(old_methods); in UpdateObjectsForImageRelocation() local 479 if (old_methods != new_methods) { in UpdateObjectsForImageRelocation() 480 SetDexCacheResolvedMethods(new_methods, pointer_size); in UpdateObjectsForImageRelocation()
|
D | class_linker.h | 1109 LengthPrefixedArray<ArtMethod>* new_methods)
|
D | class_linker.cc | 3845 LengthPrefixedArray<ArtMethod>* new_methods) { in UpdateClassMethods() argument 3846 klass->SetMethodsPtrUnchecked(new_methods, in UpdateClassMethods()
|
/art/runtime/gc/space/ |
D | image_space.cc | 1253 ArtMethod** new_methods = fixup_adapter.ForwardObject(methods); in RelocateInPlace() local 1254 if (methods != new_methods) { in RelocateInPlace() 1255 dex_cache->SetResolvedMethods(new_methods); in RelocateInPlace() 1258 ArtMethod* orig = mirror::DexCache::GetElementPtrSize(new_methods, j, pointer_size); in RelocateInPlace() 1261 mirror::DexCache::SetElementPtrSize(new_methods, j, copy, pointer_size); in RelocateInPlace()
|