Lines Matching refs:ArtMethod

99 void ThrowAbstractMethodError(ArtMethod* method) {  in ThrowAbstractMethodError()
102 ArtMethod::PrettyMethod(method).c_str()).c_str()); in ThrowAbstractMethodError()
200 ArtMethod* called, in ThrowIllegalAccessErrorClassForMethodDispatch()
206 << " method " << ArtMethod::PrettyMethod(called).c_str(); in ThrowIllegalAccessErrorClassForMethodDispatch()
210 void ThrowIllegalAccessErrorMethod(ObjPtr<mirror::Class> referrer, ArtMethod* accessed) { in ThrowIllegalAccessErrorMethod()
212 msg << "Method '" << ArtMethod::PrettyMethod(accessed) << "' is inaccessible to class '" in ThrowIllegalAccessErrorMethod()
224 void ThrowIllegalAccessErrorFinalField(ArtMethod* referrer, ArtField* accessed) { in ThrowIllegalAccessErrorFinalField()
227 << "' cannot be written to by method '" << ArtMethod::PrettyMethod(referrer) << "'"; in ThrowIllegalAccessErrorFinalField()
261 ArtMethod* method, ArtMethod* referrer) { in ThrowIncompatibleClassChangeError()
263 msg << "The method '" << ArtMethod::PrettyMethod(method) << "' was expected to be of type " in ThrowIncompatibleClassChangeError()
270 void ThrowIncompatibleClassChangeErrorClassForInterfaceSuper(ArtMethod* method, in ThrowIncompatibleClassChangeErrorClassForInterfaceSuper()
273 ArtMethod* referrer) { in ThrowIncompatibleClassChangeErrorClassForInterfaceSuper()
281 << ArtMethod::PrettyMethod(method) << "'"; in ThrowIncompatibleClassChangeErrorClassForInterfaceSuper()
288 void ThrowIncompatibleClassChangeErrorClassForInterfaceDispatch(ArtMethod* interface_method, in ThrowIncompatibleClassChangeErrorClassForInterfaceDispatch()
290 ArtMethod* referrer) { in ThrowIncompatibleClassChangeErrorClassForInterfaceDispatch()
298 << "' in call to '" << ArtMethod::PrettyMethod(interface_method) << "'"; in ThrowIncompatibleClassChangeErrorClassForInterfaceDispatch()
306 ArtMethod* referrer) { in ThrowIncompatibleClassChangeErrorField()
322 void ThrowIncompatibleClassChangeErrorForMethodConflict(ArtMethod* method) { in ThrowIncompatibleClassChangeErrorForMethodConflict()
327 ArtMethod::PrettyMethod(method).c_str()).c_str()); in ThrowIncompatibleClassChangeErrorForMethodConflict()
446 void ThrowNullPointerExceptionForMethodAccess(ArtMethod* method, InvokeType type) { in ThrowNullPointerExceptionForMethodAccess()
574 ArtMethod* method = Thread::Current()->GetCurrentMethod(&throw_dex_pc); in ThrowNullPointerExceptionFromDexPC()