Home
last modified time | relevance | path

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

/art/runtime/jni/
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()
/art/openjdkjvmti/
Dti_redefine.cc2037 art::Handle<art::mirror::Class> old_class(hs.NewHandle(GetMirrorClass())); in AllocateNewClassObject() local
2038 art::Handle<art::mirror::Class> super_class(hs.NewHandle(old_class->GetSuperClass())); in AllocateNewClassObject()
2039 return AllocateNewClassObject(old_class, super_class, cache, /*dex_class_def_index*/0); in AllocateNewClassObject()
2043 art::Handle<art::mirror::Class> old_class, in AllocateNewClassObject() argument
2062 "Unable to allocate class object for redefinition of " + old_class->PrettyClass()); in AllocateNewClassObject()
2070 old_class->GetClassLoader()); in AllocateNewClassObject()
2099 CHECK(old_class->IsResolved()) in AllocateNewClassObject()
2100 << "Attempting to redefine an unresolved class " << old_class->PrettyClass() in AllocateNewClassObject()
2101 << " status=" << old_class->GetStatus(); in AllocateNewClassObject()
2103 if (old_class->WasVerificationAttempted()) { in AllocateNewClassObject()
[all …]
Dti_redefine.h191 art::Handle<art::mirror::Class> old_class,