Searched refs:new_methods (Results 1 – 6 of 6) 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 | 716 void SetMethodsPtr(LengthPrefixedArray<ArtMethod>* new_methods, 721 void SetMethodsPtrUnchecked(LengthPrefixedArray<ArtMethod>* new_methods,
|
/art/runtime/jni/ |
D | jni_id_manager.cc | 495 ObjPtr<mirror::PointerArray> new_methods(new_ext_data->GetJMethodIDsPointerArray()); in VisitReflectiveTargets() local 496 if (!new_methods.IsNull()) { in VisitReflectiveTargets() 497 new_methods->SetElementPtrSize(new_off, id, kRuntimePointerSize); in VisitReflectiveTargets()
|
/art/openjdkjvmti/ |
D | ti_redefine.cc | 2624 auto new_methods = new_cls->GetMethods(art::kRuntimePointerSize); in CollectNewFieldAndMethodMappings() local 2629 new_methods.begin(), in CollectNewFieldAndMethodMappings() 2630 new_methods.end(), in CollectNewFieldAndMethodMappings() 2634 CHECK(nm_iter != new_methods.end()) in CollectNewFieldAndMethodMappings()
|
/art/runtime/ |
D | class_linker.h | 1326 LengthPrefixedArray<ArtMethod>* new_methods)
|