Home | History | Annotate | Download | only in runtime

Lines Matching refs:exception

85 // exception; there the "L;" must be present ("[La/b/C;"). Historically we've
296 ScopedLocalRef<jthrowable> exception(
298 if (exception.get() == nullptr) {
303 soa.Self()->SetException(throw_location, soa.Decode<mirror::Throwable*>(exception.get()));
694 mirror::Throwable* exception = soa.Decode<mirror::Throwable*>(java_exception);
695 if (exception == nullptr) {
699 soa.Self()->SetException(throw_location, exception);
720 // If we have no exception to describe, pass through.
742 ScopedLocalRef<jthrowable> exception(env,
744 ScopedLocalRef<jclass> exception_class(env, env->GetObjectClass(exception.get()));
750 env->CallVoidMethod(exception.get(), mid);
766 mirror::Object* exception = soa.Self()->GetException(nullptr);
767 return soa.AddLocalReference<jthrowable>(exception);