Searched refs:new_methods (Results 1 – 7 of 7) sorted by relevance
/art/runtime/mirror/ |
D | class_ext.cc | 78 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()
|
D | class-inl.h | 251 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()
|
D | class.h | 726 void SetMethodsPtr(LengthPrefixedArray<ArtMethod>* new_methods, 731 void SetMethodsPtrUnchecked(LengthPrefixedArray<ArtMethod>* new_methods,
|
/art/runtime/jni/ |
D | jni_id_manager.cc | 524 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/ |
D | ti_redefine.cc | 2632 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/ |
D | class_linker.h | 1251 LengthPrefixedArray<ArtMethod>* new_methods)
|
D | class_linker.cc | 4580 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()
|