Home | History | Annotate | Download | only in runtime

Lines Matching refs:target_field

8949   ArtField* target_field =
8951 if (LIKELY(target_field != nullptr)) {
8952 ObjPtr<mirror::Class> target_class = target_field->GetDeclaringClass();
8954 if (UNLIKELY(!referring_class->CanAccessMember(target_class, target_field->GetAccessFlags()))) {
8955 ThrowIllegalAccessErrorField(referring_class, target_field);
8958 if (UNLIKELY(is_put && target_field->IsFinal())) {
8959 ThrowIllegalAccessErrorField(referring_class, target_field);
8980 method_params->Set(0, target_field->ResolveType());
8985 return_type = hs.NewHandle(target_field->ResolveType());
8989 method_params->Set(0, target_field->GetDeclaringClass());
8990 method_params->Set(1, target_field->ResolveType());
8995 method_params->Set(0, target_field->GetDeclaringClass());
8996 return_type = hs.NewHandle(target_field->ResolveType());
9026 uintptr_t target = reinterpret_cast<uintptr_t>(target_field);