Lines Matching refs:existing

987     *error_msg = StringPrintf("Failed to find existing oat file at %s: %s", oat_location,
2270 mirror::Class* existing = InsertClass(descriptor, klass.Get(), hash);
2271 if (existing != nullptr) {
2274 return EnsureResolved(self, descriptor, existing);
3074 mirror::Class* existing = InsertClass(descriptor, primitive_class,
3076 CHECK(existing == nullptr) << "InitPrimitiveClass(" << type << ") failed";
3222 mirror::Class* existing = InsertClass(descriptor, new_class.Get(), hash);
3223 if (existing == nullptr) {
3232 return existing;
3275 mirror::Class* existing = LookupClassFromTableLocked(descriptor, klass->GetClassLoader(), hash);
3276 if (existing != nullptr) {
3277 return existing;
3283 existing = LookupClassFromImage(descriptor);
3284 if (existing != nullptr) {
3285 CHECK_EQ(klass, existing);
3306 mirror::Class* existing = existing_it->Read();
3307 CHECK_NE(existing, klass) << descriptor;
3308 CHECK(!existing->IsResolved()) << descriptor;
3316 existing = LookupClassFromImage(descriptor);
3317 if (existing != nullptr) {
3318 CHECK_EQ(klass, existing) << descriptor;
3329 return existing;
3418 mirror::Class* existing = LookupClassFromTableLocked(descriptor, nullptr, hash);
3419 if (existing != nullptr) {
3420 CHECK_EQ(existing, klass) << PrettyClassAndClassLoader(existing) << " != "
3932 mirror::Class* existing = InsertClass(descriptor.c_str(), klass.Get(),
3934 CHECK(existing == nullptr);
3981 // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its
4492 mirror::Class* existing = UpdateClass(descriptor, new_class_h.Get(),
4494 CHECK(existing == nullptr || existing == klass.Get());
5209 // If we are working on a super interface, try extending the existing method array.