Home
last modified time | relevance | path

Searched refs:ThrowNewException (Results 1 – 14 of 14) sorted by relevance

/art/runtime/jni/
Djni_internal.h39 int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause);
Djni_internal.cc576 int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause) in ThrowNewException() function
779 return ThrowNewException(env, c, msg, nullptr); in ThrowNew()
/art/runtime/entrypoints/quick/
Dquick_throw_entrypoints.cc57 self->ThrowNewException("Ljava/lang/NullPointerException;", nullptr); in artDeliverExceptionFromCode()
/art/runtime/entrypoints/jni/
Djni_entrypoints.cc118 self->ThrowNewException("Ljava/lang/UnsatisfiedLinkError;", error_msg.c_str()); in artFindNativeMethodRunnable()
/art/runtime/
Dcommon_throws.cc59 self->ThrowNewException(exception_descriptor, nullptr); in ThrowException()
77 self->ThrowNewException(exception_descriptor, msg.str().c_str()); in ThrowException()
674 Thread::Current()->ThrowNewException("Ljava/nio/ReadOnlyBufferException;", nullptr); in ThrowReadOnlyBufferException()
Dstring_builder_append.cc413 hs_.Self()->ThrowNewException("Ljava/lang/OutOfMemoryError;", in CalculateLengthWithFlag()
Dtrace.cc728 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;", msg.c_str()); in Start()
745 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;", msg.c_str()); in Start()
Dthread.cc3562 ThrowNewException(exception_class_descriptor, msg.c_str()); in ThrowNewExceptionV()
3565 void Thread::ThrowNewException(const char* exception_class_descriptor, in ThrowNewException() function in art::Thread
3696 ThrowNewException("Ljava/lang/OutOfMemoryError;", msg); in ThrowOutOfMemoryError()
Dmonitor.cc938 self->ThrowNewException("Ljava/lang/InterruptedException;", nullptr); in Wait()
Dthread.h726 void ThrowNewException(const char* exception_class_descriptor, const char* msg)
/art/runtime/mirror/
Dobject_array-inl.h314 self->ThrowNewException("Ljava/lang/ArrayStoreException;", msg.c_str()); in AssignableCheckingMemcpy()
Dclass.cc107 self->ThrowNewException("Ljava/lang/NullPointerException;", /* msg= */ nullptr); in GetPrimitiveClass()
109 self->ThrowNewException("Ljava/lang/ClassNotFoundException;", name->ToModifiedUtf8().c_str()); in GetPrimitiveClass()
2211 self->ThrowNewException("Ljava/lang/ClassNotFoundException;", "java.lang.ClassValue"); in CheckIsVisibleWithTargetSdk()
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h219 self->ThrowNewException("Ljava/lang/InstantiationError;", klass->PrettyDescriptor().c_str()); in CheckObjectAlloc()
/art/runtime/interpreter/
Dunstarted_runtime.cc847 self->ThrowNewException("Ljava/lang/ArrayStoreException;", "src or trg is not an array"); in UnstartedSystemArraycopy()