Searched refs:old_class (Results 1 – 3 of 3) sorted by relevance
454 ObjPtr<mirror::Class> old_class(old_field->GetDeclaringClass()); in VisitReflectiveTargets() local456 ObjPtr<mirror::ClassExt> old_ext_data(old_class->GetExtData()); in VisitReflectiveTargets()461 << old_class->PrettyClass(); in VisitReflectiveTargets()464 size_t old_off = ArraySlice<ArtField>(old_class->GetSFieldsPtr()).OffsetOf(old_field); in VisitReflectiveTargets()470 size_t old_off = ArraySlice<ArtField>(old_class->GetIFieldsPtr()).OffsetOf(old_field); in VisitReflectiveTargets()507 ObjPtr<mirror::Class> old_class(old_method->GetDeclaringClass()); in VisitReflectiveTargets() local509 ObjPtr<mirror::ClassExt> old_ext_data(old_class->GetExtData()); in VisitReflectiveTargets()512 CHECK(!old_ext_data->HasMethodPointerIdMarker()) << old_class->PrettyClass(); in VisitReflectiveTargets()514 size_t old_off = ArraySlice<ArtMethod>(old_class->GetMethodsPtr()).OffsetOf(old_method); in VisitReflectiveTargets()
2047 art::Handle<art::mirror::Class> old_class(hs.NewHandle(GetMirrorClass())); in AllocateNewClassObject() local2048 art::Handle<art::mirror::Class> super_class(hs.NewHandle(old_class->GetSuperClass())); in AllocateNewClassObject()2049 return AllocateNewClassObject(old_class, super_class, cache, /*dex_class_def_index*/0); in AllocateNewClassObject()2053 art::Handle<art::mirror::Class> old_class, in AllocateNewClassObject() argument2072 "Unable to allocate class object for redefinition of " + old_class->PrettyClass()); in AllocateNewClassObject()2080 old_class->GetClassLoader()); in AllocateNewClassObject()2109 CHECK(old_class->IsResolved()) in AllocateNewClassObject()2110 << "Attempting to redefine an unresolved class " << old_class->PrettyClass() in AllocateNewClassObject()2111 << " status=" << old_class->GetStatus(); in AllocateNewClassObject()2113 if (old_class->ShouldSkipHiddenApiChecks()) { in AllocateNewClassObject()[all …]
191 art::Handle<art::mirror::Class> old_class,