Lines Matching refs:existing

1857   mirror::Class* existing = InsertClass(descriptor, klass.Get(), hash);
1858 if (existing != nullptr) {
1861 return EnsureResolved(self, descriptor, existing);
2566 mirror::Class* existing = InsertClass(descriptor, h_class.Get(),
2568 CHECK(existing == nullptr) << "InitPrimitiveClass(" << type << ") failed";
2712 mirror::Class* existing = InsertClass(descriptor, new_class.Get(), hash);
2713 if (existing == nullptr) {
2722 return existing;
2765 mirror::Class* existing = LookupClassFromTableLocked(descriptor, klass->GetClassLoader(), hash);
2766 if (existing != nullptr) {
2767 return existing;
2773 existing = LookupClassFromImage(descriptor);
2774 if (existing != nullptr) {
2775 CHECK_EQ(klass, existing);
2804 mirror::Class* existing = existing_it->Read();
2805 CHECK_NE(existing, klass) << descriptor;
2806 CHECK(!existing->IsResolved()) << descriptor;
2814 existing = LookupClassFromImage(descriptor);
2815 if (existing != nullptr) {
2816 CHECK_EQ(klass, existing) << descriptor;
2827 return existing;
2915 mirror::Class* existing = LookupClassFromTableLocked(descriptor, nullptr, hash);
2916 if (existing != nullptr) {
2917 CHECK_EQ(existing, klass) << PrettyClassAndClassLoader(existing) << " != "
3294 mirror::Class* existing = InsertClass(descriptor.c_str(), klass.Get(), hash);
3295 CHECK(existing == nullptr);
3453 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
4083 mirror::Class* existing = UpdateClass(descriptor, h_new_class.Get(),
4085 CHECK(existing == nullptr || existing == klass.Get());
4836 // If we are working on a super interface, try extending the existing method array.