Lines Matching refs:Get

215   CHECK(java_lang_Class.Get() != nullptr);  in InitWithoutImage()
216 mirror::Class::SetClassClass(java_lang_Class.Get()); in InitWithoutImage()
217 java_lang_Class->SetClass(java_lang_Class.Get()); in InitWithoutImage()
227 AllocClass(self, java_lang_Class.Get(), mirror::ObjectArray<mirror::Class>::ClassSize()))); in InitWithoutImage()
228 class_array_class->SetComponentType(java_lang_Class.Get()); in InitWithoutImage()
232 AllocClass(self, java_lang_Class.Get(), mirror::Object::ClassSize()))); in InitWithoutImage()
233 CHECK(java_lang_Object.Get() != nullptr); in InitWithoutImage()
235 java_lang_Class->SetSuperClass(java_lang_Object.Get()); in InitWithoutImage()
240 AllocClass(self, java_lang_Class.Get(), mirror::ObjectArray<mirror::Object>::ClassSize()))); in InitWithoutImage()
241 object_array_class->SetComponentType(java_lang_Object.Get()); in InitWithoutImage()
245 AllocClass(self, java_lang_Class.Get(), mirror::Class::PrimitiveClassSize()))); in InitWithoutImage()
249 AllocClass(self, java_lang_Class.Get(), in InitWithoutImage()
251 char_array_class->SetComponentType(char_class.Get()); in InitWithoutImage()
252 mirror::CharArray::SetArrayClass(char_array_class.Get()); in InitWithoutImage()
256 AllocClass(self, java_lang_Class.Get(), mirror::String::ClassSize()))); in InitWithoutImage()
257 mirror::String::SetClass(java_lang_String.Get()); in InitWithoutImage()
263 AllocClass(self, java_lang_Class.Get(), mirror::Reference::ClassSize()))); in InitWithoutImage()
264 mirror::Reference::SetClass(java_lang_ref_Reference.Get()); in InitWithoutImage()
270 mirror::ObjectArray<mirror::Class>::Alloc(self, object_array_class.Get(), in InitWithoutImage()
273 SetClassRoot(kJavaLangClass, java_lang_Class.Get()); in InitWithoutImage()
274 SetClassRoot(kJavaLangObject, java_lang_Object.Get()); in InitWithoutImage()
275 SetClassRoot(kClassArrayClass, class_array_class.Get()); in InitWithoutImage()
276 SetClassRoot(kObjectArrayClass, object_array_class.Get()); in InitWithoutImage()
277 SetClassRoot(kCharArrayClass, char_array_class.Get()); in InitWithoutImage()
278 SetClassRoot(kJavaLangString, java_lang_String.Get()); in InitWithoutImage()
279 SetClassRoot(kJavaLangRefReference, java_lang_ref_Reference.Get()); in InitWithoutImage()
296 AllocClass(self, java_lang_Class.Get(), mirror::Array::ClassSize()))); in InitWithoutImage()
298 mirror::IntArray::SetArrayClass(int_array_class.Get()); in InitWithoutImage()
299 SetClassRoot(kIntArrayClass, int_array_class.Get()); in InitWithoutImage()
305 AllocClass(self, java_lang_Class.Get(), mirror::DexCache::ClassSize()))); in InitWithoutImage()
306 SetClassRoot(kJavaLangDexCache, java_lang_DexCache.Get()); in InitWithoutImage()
313 AllocClass(self, java_lang_Class.Get(), mirror::ArtField::ClassSize()))); in InitWithoutImage()
314 CHECK(java_lang_reflect_ArtField.Get() != nullptr); in InitWithoutImage()
316 SetClassRoot(kJavaLangReflectArtField, java_lang_reflect_ArtField.Get()); in InitWithoutImage()
318 mirror::ArtField::SetClass(java_lang_reflect_ArtField.Get()); in InitWithoutImage()
321 AllocClass(self, java_lang_Class.Get(), mirror::ArtMethod::ClassSize()))); in InitWithoutImage()
322 CHECK(java_lang_reflect_ArtMethod.Get() != nullptr); in InitWithoutImage()
324 SetClassRoot(kJavaLangReflectArtMethod, java_lang_reflect_ArtMethod.Get()); in InitWithoutImage()
326 mirror::ArtMethod::SetClass(java_lang_reflect_ArtMethod.Get()); in InitWithoutImage()
330 AllocClass(self, java_lang_Class.Get(), in InitWithoutImage()
332 object_array_string->SetComponentType(java_lang_String.Get()); in InitWithoutImage()
333 SetClassRoot(kJavaLangStringArrayClass, object_array_string.Get()); in InitWithoutImage()
336 AllocClass(self, java_lang_Class.Get(), in InitWithoutImage()
338 object_array_art_method->SetComponentType(java_lang_reflect_ArtMethod.Get()); in InitWithoutImage()
339 SetClassRoot(kJavaLangReflectArtMethodArrayClass, object_array_art_method.Get()); in InitWithoutImage()
342 AllocClass(self, java_lang_Class.Get(), in InitWithoutImage()
344 object_array_art_field->SetComponentType(java_lang_reflect_ArtField.Get()); in InitWithoutImage()
345 SetClassRoot(kJavaLangReflectArtFieldArrayClass, object_array_art_field.Get()); in InitWithoutImage()
359 InitializePrimitiveClass(char_class.Get(), Primitive::kPrimChar); in InitWithoutImage()
360 SetClassRoot(kPrimitiveChar, char_class.Get()); // needs descriptor in InitWithoutImage()
382 CHECK_EQ(java_lang_Object.Get(), Object_class); in InitWithoutImage()
389 CHECK_EQ(java_lang_String.Get(), String_class) << os1.str() << "\n\n" << os2.str(); in InitWithoutImage()
393 CHECK_EQ(java_lang_String.Get(), String_class); in InitWithoutImage()
394 CHECK_EQ(java_lang_DexCache.Get(), DexCache_class); in InitWithoutImage()
405 CHECK_EQ(char_array_class.Get(), found_char_array_class); in InitWithoutImage()
411 CHECK_EQ(int_array_class.Get(), found_int_array_class); in InitWithoutImage()
423 CHECK_EQ(class_array_class.Get(), found_class_array_class); in InitWithoutImage()
426 CHECK_EQ(object_array_class.Get(), found_object_array_class); in InitWithoutImage()
449 CHECK_EQ(java_lang_Class.Get(), Class_class); in InitWithoutImage()
453 CHECK_EQ(java_lang_reflect_ArtMethod.Get(), Art_method_class); in InitWithoutImage()
457 CHECK_EQ(java_lang_reflect_ArtField.Get(), Art_field_class); in InitWithoutImage()
461 CHECK_EQ(object_array_string.Get(), String_array_class); in InitWithoutImage()
465 CHECK_EQ(object_array_art_method.Get(), Art_method_array_class); in InitWithoutImage()
469 CHECK_EQ(object_array_art_field.Get(), Art_field_array_class); in InitWithoutImage()
481 CHECK_EQ(java_lang_ref_Reference.Get(), Reference_class); in InitWithoutImage()
532 mirror::Class* resolved_type = ResolveType(dex_file, void_type_idx, java_lang_Object.Get()); in InitWithoutImage()
1627 class_roots_ = GcRoot<mirror::ObjectArray<mirror::Class>>(class_roots.Get()); in InitFromImage()
1637 Handle<mirror::DexCache> dex_cache(hs.NewHandle(dex_caches->Get(i))); in InitFromImage()
1680 mirror::Class::SetClassClass(class_roots->Get(kJavaLangClass)); in InitFromImage()
1681 class_roots_ = GcRoot<mirror::ObjectArray<mirror::Class>>(class_roots.Get()); in InitFromImage()
1849 CHECK(classes.Get() != nullptr); // OOME. in VisitClassesWithoutClassesLock()
1858 mirror::Class* klass = classes->Get(i); in VisitClassesWithoutClassesLock()
1892 heap->AllocObject<true>(self, dex_cache_class.Get(), dex_cache_class->GetObjectSize(), in AllocDexCache()
1894 if (dex_cache.Get() == nullptr) { in AllocDexCache()
1899 if (location.Get() == nullptr) { in AllocDexCache()
1904 if (strings.Get() == nullptr) { in AllocDexCache()
1909 if (types.Get() == nullptr) { in AllocDexCache()
1914 if (methods.Get() == nullptr) { in AllocDexCache()
1919 if (fields.Get() == nullptr) { in AllocDexCache()
1922 dex_cache->Init(&dex_file, location.Get(), strings.Get(), types.Get(), methods.Get(), in AllocDexCache()
1923 fields.Get()); in AllocDexCache()
1924 return dex_cache.Get(); in AllocDexCache()
1981 ThrowEarlierClassFailure(h_class.Get()); in EnsureResolved()
1987 h_class.Get()->GetClassLoader()); in EnsureResolved()
1997 ThrowClassCircularityError(h_class.Get()); in EnsureResolved()
2067 GetObject(class_loader.Get()); in FindClassInPathClassLoader()
2068 if (dex_path_list != nullptr && dex_file_field.Get() != nullptr && in FindClassInPathClassLoader()
2069 cookie_field.Get() != nullptr) { in FindClassInPathClassLoader()
2129 mirror::Class* klass = LookupClass(descriptor, hash, class_loader.Get()); in FindClass()
2136 } else if (class_loader.Get() == nullptr) { in FindClass()
2152 if (class_loader.Get() != nullptr) { in FindClass()
2170 soa.AddLocalReference<jobject>(class_loader.Get())); in FindClass()
2184 soa.AddLocalReference<jobject>(class_loader.Get())); in FindClass()
2245 if (klass.Get() == nullptr) { in DefineClass()
2252 if (UNLIKELY(klass.Get() == nullptr)) { in DefineClass()
2257 LoadClass(dex_file, dex_class_def, klass, class_loader.Get()); in DefineClass()
2270 mirror::Class* existing = InsertClass(descriptor, klass.Get(), hash); in DefineClass()
2317 Dbg::PostClassPrepare(new_class_h.Get()); in DefineClass()
2319 return new_class_h.Get(); in DefineClass()
2643 oat_method.LinkMethod(method.Get()); in LinkCode()
2647 bool enter_interpreter = NeedsInterpreter(method.Get(), in LinkCode()
2717 runtime->GetInstrumentation()->UpdateMethodsCode(method.Get(), in LinkCode()
2731 CHECK(klass.Get() != nullptr); in LoadClass()
2795 if (UNLIKELY(sfield.Get() == nullptr)) { in LoadClassMembers()
2799 klass->SetStaticField(i, sfield.Get()); in LoadClassMembers()
2805 if (UNLIKELY(ifield.Get() == nullptr)) { in LoadClassMembers()
2809 klass->SetInstanceField(i, ifield.Get()); in LoadClassMembers()
2840 if (UNLIKELY(method.Get() == nullptr)) { in LoadClassMembers()
2844 klass->SetDirectMethod(i, method.Get()); in LoadClassMembers()
2860 if (UNLIKELY(method.Get() == nullptr)) { in LoadClassMembers()
2864 klass->SetVirtualMethod(i, method.Get()); in LoadClassMembers()
2876 dst->SetDeclaringClass(klass.Get()); in LoadField()
2896 dst->SetDeclaringClass(klass.Get()); in LoadMethod()
2933 << PrettyDescriptor(klass.Get()) << " in dex file " << dex_file.GetLocation(); in LoadMethod()
2948 CHECK(dex_cache.Get() != nullptr) << "Failed to allocate dex cache for " in AppendToBootClassPath()
2955 CHECK(dex_cache.Get() != nullptr) << dex_file.GetLocation(); in AppendToBootClassPath()
2979 CHECK(dex_cache.Get() != nullptr) << dex_file.GetLocation(); in RegisterDexFileLocked()
2982 dex_caches_.push_back(GcRoot<mirror::DexCache>(dex_cache.Get())); in RegisterDexFileLocked()
3003 CHECK(dex_cache.Get() != nullptr) << "Failed to allocate dex cache for " in RegisterDexFile()
3099 if (component_type.Get() == nullptr) { in CreateArrayClass()
3103 component_type.Assign(LookupClass(descriptor + 1, component_hash, class_loader.Get())); in CreateArrayClass()
3104 if (component_type.Get() == nullptr) { in CreateArrayClass()
3132 if (class_loader.Get() != component_type->GetClassLoader()) { in CreateArrayClass()
3168 if (new_class.Get() == nullptr) { in CreateArrayClass()
3170 if (new_class.Get() == nullptr) { in CreateArrayClass()
3173 new_class->SetComponentType(component_type.Get()); in CreateArrayClass()
3222 mirror::Class* existing = InsertClass(descriptor, new_class.Get(), hash); in CreateArrayClass()
3224 return new_class.Get(); in CreateArrayClass()
3410 mirror::DexCache* dex_cache = dex_caches->Get(i); in MoveImageClassesToClassTable()
3413 mirror::Class* klass = types->Get(j); in MoveImageClassesToClassTable()
3448 mirror::DexCache* dex_cache = dex_caches->Get(i); in LookupClassFromImage()
3520 ThrowEarlierClassFailure(klass.Get()); in VerifyClass()
3528 << PrettyClass(klass.Get()); in VerifyClass()
3543 if (super.Get() != nullptr) { in VerifyClass()
3553 PrettyDescriptor(klass.Get()).c_str(), in VerifyClass()
3554 PrettyDescriptor(super.Get()).c_str())); in VerifyClass()
3557 if (cause.Get() != nullptr) { in VerifyClass()
3560 ThrowVerifyError(klass.Get(), "%s", error_msg.c_str()); in VerifyClass()
3561 if (cause.Get() != nullptr) { in VerifyClass()
3562 self->GetException(nullptr)->SetCause(cause.Get()); in VerifyClass()
3576 bool preverified = VerifyClassUsingOatFile(dex_file, klass.Get(), oat_file_class_status); in VerifyClass()
3579 << PrettyDescriptor(klass.Get()) << " in " in VerifyClass()
3581 ThrowVerifyError(klass.Get(), "Rejecting class %s because it failed compile-time verification", in VerifyClass()
3582 PrettyDescriptor(klass.Get()).c_str()); in VerifyClass()
3589 verifier_failure = verifier::MethodVerifier::VerifyClass(klass.Get(), in VerifyClass()
3595 VLOG(class_linker) << "Soft verification failure in class " << PrettyDescriptor(klass.Get()) in VerifyClass()
3605 if (super.Get() == nullptr || super->IsVerified()) { in VerifyClass()
3628 LOG(ERROR) << "Verification failed on class " << PrettyDescriptor(klass.Get()) in VerifyClass()
3632 ThrowVerifyError(klass.Get(), "%s", error_msg.c_str()); in VerifyClass()
3783 if (klass.Get() == nullptr) { in CreateProxyClass()
3810 if (UNLIKELY(interfaces_sfield.Get() == nullptr)) { in CreateProxyClass()
3814 klass->SetStaticField(0, interfaces_sfield.Get()); in CreateProxyClass()
3816 interfaces_sfield->SetDeclaringClass(klass.Get()); in CreateProxyClass()
3820 if (UNLIKELY(throws_sfield.Get() == nullptr)) { in CreateProxyClass()
3824 klass->SetStaticField(1, throws_sfield.Get()); in CreateProxyClass()
3826 throws_sfield->SetDeclaringClass(klass.Get()); in CreateProxyClass()
3861 Handle<mirror::ArtMethod> prototype(hs.NewHandle(decoded_methods->Get(i))); in CreateProxyClass()
3874 std::string descriptor(GetDescriptorForProxy(klass.Get())); in CreateProxyClass()
3889 CHECK_NE(klass.Get(), new_class); in CreateProxyClass()
3893 interfaces_sfield->SetObject<false>(klass.Get(), in CreateProxyClass()
3896 throws_sfield->SetObject<false>(klass.Get(), in CreateProxyClass()
3913 Handle<mirror::ArtMethod> prototype(hs.NewHandle(decoded_methods->Get(i))); in CreateProxyClass()
3927 CHECK_EQ(klass.Get()->GetInterfaces(), in CreateProxyClass()
3929 CHECK_EQ(klass.Get()->GetThrows(), in CreateProxyClass()
3932 mirror::Class* existing = InsertClass(descriptor.c_str(), klass.Get(), in CreateProxyClass()
3935 return klass.Get(); in CreateProxyClass()
3976 mirror::ArtMethod* proxy_constructor = proxy_direct_methods->Get(2); in CreateProxyConstructor()
3990 constructor->SetDeclaringClass(klass.Get()); in CreateProxyConstructor()
4009 prototype.Get()); in CreateProxyMethod()
4020 method->SetDeclaringClass(klass.Get()); in CreateProxyMethod()
4043 CHECK(prototype->HasSameDexCacheResolvedMethods(method.Get())); in CheckProxyMethod()
4044 CHECK(prototype->HasSameDexCacheResolvedTypes(method.Get())); in CheckProxyMethod()
4105 if (!CanWeInitializeClass(klass.Get(), can_init_statics, can_init_parents)) { in InitializeClass()
4121 ThrowEarlierClassFailure(klass.Get()); in InitializeClass()
4125 CHECK(klass->IsResolved()) << PrettyClass(klass.Get()) << ": state=" << klass->GetStatus(); in InitializeClass()
4168 CHECK_EQ(klass->GetStatus(), mirror::Class::kStatusVerified) << PrettyClass(klass.Get()); in InitializeClass()
4192 << PrettyDescriptor(handle_scope_super.Get()) in InitializeClass()
4233 ConstructFieldMap(dex_file, *dex_class_def, klass.Get(), field_map); in InitializeClass()
4236 it.ReadValueToField<true>(field_map.Get(i)); in InitializeClass()
4238 it.ReadValueToField<false>(field_map.Get(i)); in InitializeClass()
4276 FixupStaticTrampolines(klass.Get()); in InitializeClass()
4310 PrettyDescriptor(klass.Get()).c_str()); in WaitForInitializeClass()
4316 LOG(FATAL) << "Unexpected class status. " << PrettyClass(klass.Get()) << " is " in WaitForInitializeClass()
4319 LOG(FATAL) << "Not Reached" << PrettyClass(klass.Get()); in WaitForInitializeClass()
4337 ThrowLinkageError(klass.Get(), in ValidateSuperClassDescriptors()
4339 PrettyDescriptor(klass.Get()).c_str(), in ValidateSuperClassDescriptors()
4354 ThrowLinkageError(klass.Get(), in ValidateSuperClassDescriptors()
4356 PrettyDescriptor(klass.Get()).c_str(), in ValidateSuperClassDescriptors()
4369 DCHECK(c.Get() != nullptr); in EnsureInitialized()
4378 CHECK(self->IsExceptionPending()) << PrettyClass(c.Get()); in EnsureInitialized()
4404 if (fields->Get(index)->GetDeclaringClass() == temp_class) { in FixupTemporaryDeclaringClass()
4405 fields->Get(index)->SetDeclaringClass(new_class); in FixupTemporaryDeclaringClass()
4413 if (fields->Get(index)->GetDeclaringClass() == temp_class) { in FixupTemporaryDeclaringClass()
4414 fields->Get(index)->SetDeclaringClass(new_class); in FixupTemporaryDeclaringClass()
4422 if (methods->Get(index)->GetDeclaringClass() == temp_class) { in FixupTemporaryDeclaringClass()
4423 methods->Get(index)->SetDeclaringClass(new_class); in FixupTemporaryDeclaringClass()
4431 if (methods->Get(index)->GetDeclaringClass() == temp_class) { in FixupTemporaryDeclaringClass()
4432 methods->Get(index)->SetDeclaringClass(new_class); in FixupTemporaryDeclaringClass()
4465 CHECK_EQ(klass->GetClassSize(), class_size) << PrettyDescriptor(klass.Get()); in LinkClass()
4474 *new_class = klass.Get(); in LinkClass()
4490 FixupTemporaryDeclaringClass(klass.Get(), new_class_h.Get()); in LinkClass()
4492 mirror::Class* existing = UpdateClass(descriptor, new_class_h.Get(), in LinkClass()
4494 CHECK(existing == nullptr || existing == klass.Get()); in LinkClass()
4658 ThrowIncompatibleClassChangeError(klass.Get(), in CheckSuperClassChange()
4678 mirror::Class* super_class = ResolveType(dex_file, super_class_idx, klass.Get()); in LoadSuperAndInterfaces()
4685 ThrowIllegalAccessError(klass.Get(), "Class %s extended by class %s is inaccessible", in LoadSuperAndInterfaces()
4687 PrettyDescriptor(klass.Get()).c_str()); in LoadSuperAndInterfaces()
4702 mirror::Class* interface = ResolveType(dex_file, idx, klass.Get()); in LoadSuperAndInterfaces()
4710 ThrowIllegalAccessError(klass.Get(), "Interface %s implemented by class %s is inaccessible", in LoadSuperAndInterfaces()
4712 PrettyDescriptor(klass.Get()).c_str()); in LoadSuperAndInterfaces()
4725 if (klass.Get() == GetClassRoot(kJavaLangObject)) { in LinkSuperClass()
4727 ThrowClassFormatError(klass.Get(), "java.lang.Object must not have a superclass"); in LinkSuperClass()
4733 ThrowLinkageError(klass.Get(), "No superclass defined for class %s", in LinkSuperClass()
4734 PrettyDescriptor(klass.Get()).c_str()); in LinkSuperClass()
4739 ThrowIncompatibleClassChangeError(klass.Get(), "Superclass %s of %s is %s", in LinkSuperClass()
4741 PrettyDescriptor(klass.Get()).c_str(), in LinkSuperClass()
4746 ThrowIllegalAccessError(klass.Get(), "Superclass %s is inaccessible to class %s", in LinkSuperClass()
4748 PrettyDescriptor(klass.Get()).c_str()); in LinkSuperClass()
4765 ThrowLinkageError(klass.Get(), in LinkSuperClass()
4767 PrettyDescriptor(klass.Get()).c_str()); in LinkSuperClass()
4789 ThrowClassFormatError(klass.Get(), "Too many methods on interface: %zd", count); in LinkMethods()
4920 if (UNLIKELY(vtable.Get() == nullptr)) { in LinkVirtualMethods()
4928 klass->SetVTable(vtable.Get()); in LinkVirtualMethods()
4933 CHECK(super_vtable != nullptr) << PrettyClass(super_class.Get()); in LinkVirtualMethods()
4939 if (UNLIKELY(vtable.Get() == nullptr)) { in LinkVirtualMethods()
4982 ThrowLinkageError(klass.Get(), "Method %s overrides final method in class %s", in LinkVirtualMethods()
5010 ThrowClassFormatError(klass.Get(), "Too many methods defined on class: %zd", actual_count); in LinkVirtualMethods()
5017 if (UNLIKELY(vtable.Get() == nullptr)) { in LinkVirtualMethods()
5022 klass->SetVTable(vtable.Get()); in LinkVirtualMethods()
5024 CHECK_EQ(klass.Get(), GetClassRoot(kJavaLangObject)); in LinkVirtualMethods()
5026 ThrowClassFormatError(klass.Get(), "Too many methods: %d", in LinkVirtualMethods()
5052 const bool have_interfaces = interfaces.Get() != nullptr; in LinkInterfaceMethods()
5084 ThrowIncompatibleClassChangeError(klass.Get(), "Class %s implements non-interface class %s", in LinkInterfaceMethods()
5085 PrettyDescriptor(klass.Get()).c_str(), in LinkInterfaceMethods()
5092 if (UNLIKELY(iftable.Get() == nullptr)) { in LinkInterfaceMethods()
5106 mirror::Class* interface = have_interfaces ? interfaces->Get(i) : in LinkInterfaceMethods()
5141 if (UNLIKELY(iftable.Get() == nullptr)) { in LinkInterfaceMethods()
5149 klass->SetIfTable(iftable.Get()); in LinkInterfaceMethods()
5221 if (UNLIKELY(method_array.Get() == nullptr)) { in LinkInterfaceMethods()
5225 iftable->SetMethodArray(i, method_array.Get()); in LinkInterfaceMethods()
5226 if (input_array.Get() == nullptr) { in LinkInterfaceMethods()
5252 klass.Get(), in LinkInterfaceMethods()
5322 if (UNLIKELY(vtable.Get() == nullptr)) { in LinkInterfaceMethods()
5335 klass->SetVTable(vtable.Get()); in LinkInterfaceMethods()
5349 CHECK(klass.Get() != nullptr); in LinkInstanceFields()
5354 CHECK(klass.Get() != nullptr); in LinkStaticFields()
5407 << PrettyClass(klass.Get()) << " " << PrettyClass(super_class); in LinkFields()
5412 CHECK_EQ(num_fields == 0, fields == nullptr) << PrettyClass(klass.Get()); in LinkFields()
5418 mirror::ArtField* f = fields->Get(i); in LinkFields()
5419 CHECK(f != nullptr) << PrettyClass(klass.Get()); in LinkFields()
5467 << PrettyClass(klass.Get()); in LinkFields()
5485 CHECK_EQ(num_reference_fields, num_fields) << PrettyClass(klass.Get()); in LinkFields()
5486 CHECK_STREQ(fields->Get(num_fields - 1)->GetName(), "referent") << PrettyClass(klass.Get()); in LinkFields()
5524 mirror::ArtField* field = fields->Get(i); in LinkFields()
5527 << " class=" << PrettyClass(klass.Get()) in LinkFields()
5533 mirror::ArtField* prev_field = fields->Get(i - 1u); in LinkFields()
5619 DCHECK(dex_cache.Get() != nullptr); in ResolveString()
5642 DCHECK(dex_cache.Get() != nullptr); in ResolveType()
5663 self->GetException(nullptr)->SetCause(cause.Get()); in ResolveType()
5677 DCHECK(dex_cache.Get() != nullptr); in ResolveMethod()
5695 resolved = klass->FindDirectMethod(dex_cache.Get(), method_idx); in ResolveMethod()
5698 resolved = klass->FindInterfaceMethod(dex_cache.Get(), method_idx); in ResolveMethod()
5703 resolved = klass->FindVirtualMethod(dex_cache.Get(), method_idx); in ResolveMethod()
5735 ThrowIncompatibleClassChangeError(type, resolved->GetInvokeType(), resolved, referrer.Get()); in ResolveMethod()
5756 if (resolved != nullptr && referrer.Get() != nullptr) { in ResolveMethod()
5777 ThrowIncompatibleClassChangeError(type, kVirtual, resolved, referrer.Get()); in ResolveMethod()
5781 ThrowIncompatibleClassChangeError(type, kInterface, resolved, referrer.Get()); in ResolveMethod()
5789 ThrowIncompatibleClassChangeError(type, kDirect, resolved, referrer.Get()); in ResolveMethod()
5793 ThrowIncompatibleClassChangeError(type, kVirtual, resolved, referrer.Get()); in ResolveMethod()
5801 ThrowIncompatibleClassChangeError(type, kDirect, resolved, referrer.Get()); in ResolveMethod()
5808 ThrowIncompatibleClassChangeError(type, kDirect, resolved, referrer.Get()); in ResolveMethod()
5812 ThrowIncompatibleClassChangeError(type, kInterface, resolved, referrer.Get()); in ResolveMethod()
5829 DCHECK(dex_cache.Get() != nullptr); in ResolveField()
5839 if (klass.Get() == nullptr) { in ResolveField()
5845 resolved = mirror::Class::FindStaticField(self, klass, dex_cache.Get(), field_idx); in ResolveField()
5847 resolved = klass->FindInstanceField(dex_cache.Get(), field_idx); in ResolveField()
5859 ThrowNoSuchFieldError(is_static ? "static " : "instance ", klass.Get(), type, name); in ResolveField()
5871 DCHECK(dex_cache.Get() != nullptr); in ResolveFieldJLS()
5881 if (klass.Get() == nullptr) { in ResolveFieldJLS()
5893 ThrowNoSuchFieldError("", klass.Get(), type, name); in ResolveFieldJLS()
5960 DCHECK(class_roots->Get(class_root) == nullptr); in SetClassRoot()