Searched refs:old_class (Results 1 – 3 of 3) sorted by relevance
425 ObjPtr<mirror::Class> old_class(old_field->GetDeclaringClass()); in VisitReflectiveTargets() local427 ObjPtr<mirror::ClassExt> old_ext_data(old_class->GetExtData()); in VisitReflectiveTargets()432 << old_class->PrettyClass(); in VisitReflectiveTargets()435 size_t old_off = ArraySlice<ArtField>(old_class->GetSFieldsPtr()).OffsetOf(old_field); in VisitReflectiveTargets()441 size_t old_off = ArraySlice<ArtField>(old_class->GetIFieldsPtr()).OffsetOf(old_field); in VisitReflectiveTargets()478 ObjPtr<mirror::Class> old_class(old_method->GetDeclaringClass()); in VisitReflectiveTargets() local480 ObjPtr<mirror::ClassExt> old_ext_data(old_class->GetExtData()); in VisitReflectiveTargets()483 CHECK(!old_ext_data->HasMethodPointerIdMarker()) << old_class->PrettyClass(); in VisitReflectiveTargets()485 size_t old_off = ArraySlice<ArtMethod>(old_class->GetMethodsPtr()).OffsetOf(old_method); in VisitReflectiveTargets()
2037 art::Handle<art::mirror::Class> old_class(hs.NewHandle(GetMirrorClass())); in AllocateNewClassObject() local2038 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() argument2062 "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 …]
191 art::Handle<art::mirror::Class> old_class,