Home
last modified time | relevance | path

Searched refs:ThrowException (Results 1 – 4 of 4) sorted by relevance

/aosp12/art/runtime/
H A Dcommon_throws.cc61 static void ThrowException(const char* exception_descriptor, in ThrowException() function
100 ThrowException("Ljava/lang/AbstractMethodError;", nullptr, in ThrowAbstractMethodError()
129 ThrowException("Ljava/lang/ArrayStoreException;", nullptr, in ThrowArrayStoreException()
155 ThrowException("Ljava/lang/ClassCastException;", nullptr, in ThrowClassCastException()
228 ThrowException("Ljava/lang/IllegalAccessError;", in ThrowIllegalAccessErrorFinalField()
265 ThrowException("Ljava/lang/IncompatibleClassChangeError;", in ThrowIncompatibleClassChangeError()
283 ThrowException("Ljava/lang/IncompatibleClassChangeError;", in ThrowIncompatibleClassChangeErrorClassForInterfaceSuper()
300 ThrowException("Ljava/lang/IncompatibleClassChangeError;", in ThrowIncompatibleClassChangeErrorClassForInterfaceDispatch()
324 ThrowException("Ljava/lang/IncompatibleClassChangeError;", in ThrowIncompatibleClassChangeErrorForMethodConflict()
351 ThrowException("Ljava/io/IOException;", nullptr, fmt, &args); in ThrowIOException()
[all …]
/aosp12/libnativehelper/include/nativehelper/
H A DJNIHelp.h289 [[maybe_unused]] static int ThrowException(JNIEnv* env, const char* className, const char* ctorSig, in ThrowException() function
408 int _status = ThrowException(env, className, "(Ljava/lang/String;)V", _detailMessage); in jniThrowException()
422 int _status = ThrowException(env, "android/system/ErrnoException", "(Ljava/lang/String;I)V", in jniThrowErrnoException()
/aosp12/art/test/471-uninitialized-locals/smali/
H A DTest.smali20 .method public static ThrowException()V
/aosp12/libnativehelper/
H A DJNIHelp.c237 static int ThrowException(JNIEnv* env, const char* className, const char* ctorSig, ...) { in ThrowException() function
309 int _status = ThrowException(env, className, ctorSig, _detailMessage, ## __VA_ARGS__); \