Home
last modified time | relevance | path

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

/art/runtime/jni/
Djni_internal.h33 int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause);
Djava_vm_ext.cc1140 self->ThrowNewException("Ljava/lang/UnsatisfiedLinkError;", detail.c_str()); in FindCodeForNativeMethod()
Djni_internal.cc559 int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause) in ThrowNewException() function
762 return ThrowNewException(env, c, msg, nullptr); in ThrowNew()
/art/runtime/entrypoints/quick/
Dquick_throw_entrypoints.cc57 self->ThrowNewException("Ljava/lang/NullPointerException;", "throw with null exception"); 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()
734 Thread::Current()->ThrowNewException("Ljava/nio/ReadOnlyBufferException;", nullptr); in ThrowReadOnlyBufferException()
Dtrace.cc319 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;", msg.c_str()); in Start()
336 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
3298 ThrowNewException("Ljava/lang/OutOfMemoryError;", msg); in ThrowOutOfMemoryError()
Dmonitor.cc892 self->ThrowNewException("Ljava/lang/InterruptedException;", nullptr); in Wait()
Dthread.h504 void ThrowNewException(const char* exception_class_descriptor, const char* msg)
Dclass_linker.cc205 self->ThrowNewException(descriptor, c->PrettyDescriptor().c_str()); in HandleEarlierVerifyError()
207 self->ThrowNewException(descriptor, nullptr); in HandleEarlierVerifyError()
/art/runtime/mirror/
Dobject_array-inl.h313 self->ThrowNewException("Ljava/lang/ArrayStoreException;", msg.c_str()); in AssignableCheckingMemcpy()
Dclass.cc89 self->ThrowNewException("Ljava/lang/NullPointerException;", /* msg= */ nullptr); in GetPrimitiveClass()
91 self->ThrowNewException("Ljava/lang/ClassNotFoundException;", name->ToModifiedUtf8().c_str()); in GetPrimitiveClass()
/art/runtime/native/
Ddalvik_system_VMDebug.cc189 soa.Self()->ThrowNewException("Ljava/lang/UnsupportedOperationException;", nullptr); in ThrowUnsupportedOperationException()
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h123 self->ThrowNewException("Ljava/lang/InstantiationError;", klass->PrettyDescriptor().c_str()); in CheckObjectAlloc()
/art/runtime/interpreter/
Dunstarted_runtime.cc824 self->ThrowNewException("Ljava/lang/ArrayStoreException;", "src or trg is not an array"); in UnstartedSystemArraycopy()