Home
last modified time | relevance | path

Searched refs:old_class (Results 1 – 3 of 3) sorted by relevance

/aosp12/art/runtime/jni/
H A Djni_id_manager.cc426 ObjPtr<mirror::Class> old_class(old_field->GetDeclaringClass()); in VisitReflectiveTargets() local
428 ObjPtr<mirror::ClassExt> old_ext_data(old_class->GetExtData()); in VisitReflectiveTargets()
433 << old_class->PrettyClass(); in VisitReflectiveTargets()
436 size_t old_off = ArraySlice<ArtField>(old_class->GetSFieldsPtr()).OffsetOf(old_field); in VisitReflectiveTargets()
442 size_t old_off = ArraySlice<ArtField>(old_class->GetIFieldsPtr()).OffsetOf(old_field); in VisitReflectiveTargets()
479 ObjPtr<mirror::Class> old_class(old_method->GetDeclaringClass()); in VisitReflectiveTargets() local
481 ObjPtr<mirror::ClassExt> old_ext_data(old_class->GetExtData()); in VisitReflectiveTargets()
484 CHECK(!old_ext_data->HasMethodPointerIdMarker()) << old_class->PrettyClass(); in VisitReflectiveTargets()
486 size_t old_off = ArraySlice<ArtMethod>(old_class->GetMethodsPtr()).OffsetOf(old_method); in VisitReflectiveTargets()
/aosp12/art/openjdkjvmti/
H A Dti_redefine.cc2042 art::Handle<art::mirror::Class> old_class, in AllocateNewClassObject() argument
2098 CHECK(old_class->IsResolved()) in AllocateNewClassObject()
2100 << " status=" << old_class->GetStatus(); in AllocateNewClassObject()
2102 if (old_class->WasVerificationAttempted()) { in AllocateNewClassObject()
2110 if (old_class->IsInitialized()) { in AllocateNewClassObject()
2785 CHECK(!old_class.IsNull()); in UpdateClassStructurally()
2786 CHECK(!old_class->IsErroneous()); in UpdateClassStructurally()
2792 CopyAndClearFields(true, new_class, new_class, old_class, old_class); in UpdateClassStructurally()
2806 old_class->SetObsoleteObject(); in UpdateClassStructurally()
2935 map.emplace(old_class, new_class); in UpdateClassStructurally()
[all …]
H A Dti_redefine.h191 art::Handle<art::mirror::Class> old_class,