Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dclass_ext.cc78 Handle<PointerArray> new_methods(hs.NewHandle<PointerArray>( in ExtendObsoleteArrays() local
80 if (new_methods.IsNull()) { in ExtendObsoleteArrays()
99 new_methods->Memcpy(0, in ExtendObsoleteArrays()
108 h_this->SetObsoleteArrays(new_methods.Get(), new_dex_caches.Get()); in ExtendObsoleteArrays()
Dclass-inl.h251 inline void Class::SetMethodsPtr(LengthPrefixedArray<ArtMethod>* new_methods, in SetMethodsPtr() argument
255 SetMethodsPtrUnchecked(new_methods, num_direct, num_virtual); in SetMethodsPtr()
259 inline void Class::SetMethodsPtrUnchecked(LengthPrefixedArray<ArtMethod>* new_methods, in SetMethodsPtrUnchecked() argument
262 DCHECK_LE(num_direct + num_virtual, (new_methods == nullptr) ? 0 : new_methods->size()); in SetMethodsPtrUnchecked()
264 static_cast<uint64_t>(reinterpret_cast<uintptr_t>(new_methods))); in SetMethodsPtrUnchecked()
Dclass.h726 void SetMethodsPtr(LengthPrefixedArray<ArtMethod>* new_methods,
731 void SetMethodsPtrUnchecked(LengthPrefixedArray<ArtMethod>* new_methods,
/art/runtime/jni/
Djni_id_manager.cc524 ObjPtr<mirror::PointerArray> new_methods(new_ext_data->GetJMethodIDsPointerArray()); in VisitReflectiveTargets() local
525 if (!new_methods.IsNull()) { in VisitReflectiveTargets()
526 new_methods->SetElementPtrSize(new_off, id, kRuntimePointerSize); in VisitReflectiveTargets()
/art/openjdkjvmti/
Dti_redefine.cc2632 auto new_methods = new_cls->GetMethods(art::kRuntimePointerSize); in CollectNewFieldAndMethodMappings() local
2637 new_methods.begin(), in CollectNewFieldAndMethodMappings()
2638 new_methods.end(), in CollectNewFieldAndMethodMappings()
2642 CHECK(nm_iter != new_methods.end()) in CollectNewFieldAndMethodMappings()
/art/runtime/
Dclass_linker.h1251 LengthPrefixedArray<ArtMethod>* new_methods)
Dclass_linker.cc4580 LengthPrefixedArray<ArtMethod>* new_methods) { in UpdateClassMethods() argument
4581 klass->SetMethodsPtrUnchecked(new_methods, in UpdateClassMethods()
8061 LengthPrefixedArray<ArtMethod>* const new_methods = klass->GetMethodsPtr(); in FinalizeIfTable() local
8062 if (new_methods != nullptr) { in FinalizeIfTable()
8063 DCHECK_NE(new_methods->size(), 0u); in FinalizeIfTable()
8065 reinterpret_cast<uintptr_t>(&new_methods->At(0, kMethodSize, kMethodAlignment)); in FinalizeIfTable()
8066 imt_methods_size = new_methods->size() * kMethodSize; in FinalizeIfTable()