Home
last modified time | relevance | path

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

/art/runtime/jni/
Djni_internal.h39 int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause);
Djava_vm_ext.cc1149 self->ThrowNewException("Ljava/lang/UnsatisfiedLinkError;", detail.c_str()); in FindCodeForNativeMethod()
Djni_internal.cc397 int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause) in ThrowNewException() function
600 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/
Dcommon_throws.cc58 self->ThrowNewException(exception_descriptor, nullptr); in ThrowException()
76 self->ThrowNewException(exception_descriptor, msg.str().c_str()); in ThrowException()
746 Thread::Current()->ThrowNewException("Ljava/nio/ReadOnlyBufferException;", nullptr); in ThrowReadOnlyBufferException()
Dstring_builder_append.cc266 hs_.Self()->ThrowNewException("Ljava/lang/OutOfMemoryError;", in CalculateLengthWithFlag()
Dtrace.cc320 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;", msg.c_str()); in Start()
337 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;", msg.c_str()); in Start()
Dthread.cc3172 ThrowNewException(exception_class_descriptor, msg.c_str()); in ThrowNewExceptionV()
3175 void Thread::ThrowNewException(const char* exception_class_descriptor, in ThrowNewException() function in art::Thread
3295 ThrowNewException("Ljava/lang/OutOfMemoryError;", msg); in ThrowOutOfMemoryError()
Dthread.h527 void ThrowNewException(const char* exception_class_descriptor, const char* msg)
Dmonitor.cc931 self->ThrowNewException("Ljava/lang/InterruptedException;", nullptr); in Wait()
Dclass_linker.cc216 self->ThrowNewException(descriptor, c->PrettyDescriptor().c_str()); in HandleEarlierVerifyError()
218 self->ThrowNewException(descriptor, nullptr); in HandleEarlierVerifyError()
/art/runtime/mirror/
Dobject_array-inl.h314 self->ThrowNewException("Ljava/lang/ArrayStoreException;", msg.c_str()); in AssignableCheckingMemcpy()
Dclass.cc139 self->ThrowNewException("Ljava/lang/NullPointerException;", /* msg= */ nullptr); in GetPrimitiveClass()
141 self->ThrowNewException("Ljava/lang/ClassNotFoundException;", name->ToModifiedUtf8().c_str()); in GetPrimitiveClass()
/art/runtime/native/
Ddalvik_system_VMDebug.cc183 soa.Self()->ThrowNewException("Ljava/lang/UnsupportedOperationException;", nullptr); in ThrowUnsupportedOperationException()
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h153 self->ThrowNewException("Ljava/lang/InstantiationError;", klass->PrettyDescriptor().c_str()); in CheckObjectAlloc()
/art/runtime/interpreter/
Dunstarted_runtime.cc773 self->ThrowNewException("Ljava/lang/ArrayStoreException;", "src or trg is not an array"); in UnstartedSystemArraycopy()