Searched refs:ThrowNewException (Results 1 – 15 of 15) sorted by relevance
/art/runtime/jni/ |
D | jni_internal.h | 33 int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause);
|
D | java_vm_ext.cc | 1140 self->ThrowNewException("Ljava/lang/UnsatisfiedLinkError;", detail.c_str()); in FindCodeForNativeMethod()
|
D | jni_internal.cc | 559 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/ |
D | quick_throw_entrypoints.cc | 57 self->ThrowNewException("Ljava/lang/NullPointerException;", "throw with null exception"); in artDeliverExceptionFromCode()
|
/art/runtime/ |
D | common_throws.cc | 58 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()
|
D | trace.cc | 319 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;", msg.c_str()); in Start() 336 Thread::Current()->ThrowNewException("Ljava/lang/RuntimeException;", msg.c_str()); in Start()
|
D | thread.cc | 3172 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()
|
D | monitor.cc | 892 self->ThrowNewException("Ljava/lang/InterruptedException;", nullptr); in Wait()
|
D | thread.h | 504 void ThrowNewException(const char* exception_class_descriptor, const char* msg)
|
D | class_linker.cc | 205 self->ThrowNewException(descriptor, c->PrettyDescriptor().c_str()); in HandleEarlierVerifyError() 207 self->ThrowNewException(descriptor, nullptr); in HandleEarlierVerifyError()
|
/art/runtime/mirror/ |
D | object_array-inl.h | 313 self->ThrowNewException("Ljava/lang/ArrayStoreException;", msg.c_str()); in AssignableCheckingMemcpy()
|
D | class.cc | 89 self->ThrowNewException("Ljava/lang/NullPointerException;", /* msg= */ nullptr); in GetPrimitiveClass() 91 self->ThrowNewException("Ljava/lang/ClassNotFoundException;", name->ToModifiedUtf8().c_str()); in GetPrimitiveClass()
|
/art/runtime/native/ |
D | dalvik_system_VMDebug.cc | 189 soa.Self()->ThrowNewException("Ljava/lang/UnsupportedOperationException;", nullptr); in ThrowUnsupportedOperationException()
|
/art/runtime/entrypoints/ |
D | entrypoint_utils-inl.h | 123 self->ThrowNewException("Ljava/lang/InstantiationError;", klass->PrettyDescriptor().c_str()); in CheckObjectAlloc()
|
/art/runtime/interpreter/ |
D | unstarted_runtime.cc | 824 self->ThrowNewException("Ljava/lang/ArrayStoreException;", "src or trg is not an array"); in UnstartedSystemArraycopy()
|