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 | 730 void SetMethodsPtr(LengthPrefixedArray<ArtMethod>* new_methods, 735 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 | 2619 auto new_methods = new_cls->GetMethods(art::kRuntimePointerSize); in CollectNewFieldAndMethodMappings() local 2624 new_methods.begin(), in CollectNewFieldAndMethodMappings() 2625 new_methods.end(), in CollectNewFieldAndMethodMappings() 2629 CHECK(nm_iter != new_methods.end()) in CollectNewFieldAndMethodMappings()
|
/art/runtime/ |
D | class_linker.cc | 4762 LengthPrefixedArray<ArtMethod>* new_methods) { in UpdateClassMethods() argument 4763 klass->SetMethodsPtrUnchecked(new_methods, in UpdateClassMethods() 8257 LengthPrefixedArray<ArtMethod>* const new_methods = klass->GetMethodsPtr(); in FinalizeIfTable() local 8258 if (new_methods != nullptr) { in FinalizeIfTable() 8259 DCHECK_NE(new_methods->size(), 0u); in FinalizeIfTable() 8261 reinterpret_cast<uintptr_t>(&new_methods->At(0, kMethodSize, kMethodAlignment)); in FinalizeIfTable() 8262 imt_methods_size = new_methods->size() * kMethodSize; in FinalizeIfTable()
|
D | class_linker.h | 1369 LengthPrefixedArray<ArtMethod>* new_methods)
|