Home
last modified time | relevance | path

Searched refs:new_methods (Results 1 – 7 of 7) sorted by relevance

/art/runtime/mirror/
Dclass_ext.cc69 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()
Dclass-inl.h227 inline void Class::SetMethodsPtr(LengthPrefixedArray<ArtMethod>* new_methods, in SetMethodsPtr() argument
231 SetMethodsPtrUnchecked(new_methods, num_direct, num_virtual); in SetMethodsPtr()
235 inline void Class::SetMethodsPtrUnchecked(LengthPrefixedArray<ArtMethod>* new_methods, in SetMethodsPtrUnchecked() argument
238 DCHECK_LE(num_direct + num_virtual, (new_methods == nullptr) ? 0 : new_methods->size()); in SetMethodsPtrUnchecked()
239 SetMethodsPtrInternal(new_methods); in SetMethodsPtrUnchecked()
246 inline void Class::SetMethodsPtrInternal(LengthPrefixedArray<ArtMethod>* new_methods) { in SetMethodsPtrInternal() argument
248 static_cast<uint64_t>(reinterpret_cast<uintptr_t>(new_methods))); in SetMethodsPtrInternal()
1071 LengthPrefixedArray<ArtMethod>* new_methods = visitor(methods); in FixupNativePointers() local
1072 if (methods != new_methods) { in FixupNativePointers()
1073 dest->SetMethodsPtrInternal(new_methods); in FixupNativePointers()
Dclass.h737 void SetMethodsPtr(LengthPrefixedArray<ArtMethod>* new_methods,
742 void SetMethodsPtrUnchecked(LengthPrefixedArray<ArtMethod>* new_methods,
1339 ALWAYS_INLINE void SetMethodsPtrInternal(LengthPrefixedArray<ArtMethod>* new_methods)
/art/runtime/
Dart_method-inl.h486 mirror::MethodDexCacheType* new_methods = visitor(old_methods); in UpdateObjectsForImageRelocation() local
487 if (old_methods != new_methods) { in UpdateObjectsForImageRelocation()
488 SetDexCacheResolvedMethods(new_methods, pointer_size); in UpdateObjectsForImageRelocation()
Dclass_linker.h1177 LengthPrefixedArray<ArtMethod>* new_methods)
Dclass_linker.cc4018 LengthPrefixedArray<ArtMethod>* new_methods) { in UpdateClassMethods() argument
4019 klass->SetMethodsPtrUnchecked(new_methods, in UpdateClassMethods()
/art/runtime/gc/space/
Dimage_space.cc1273 mirror::MethodDexCacheType* new_methods = fixup_adapter.ForwardObject(methods); in RelocateInPlace() local
1274 if (methods != new_methods) { in RelocateInPlace()
1275 dex_cache->SetResolvedMethods(new_methods); in RelocateInPlace()
1278 auto pair = mirror::DexCache::GetNativePairPtrSize(new_methods, j, pointer_size); in RelocateInPlace()
1283 mirror::DexCache::SetNativePairPtrSize(new_methods, j, pair, pointer_size); in RelocateInPlace()