/art/runtime/ |
D | method_handles_test.cc | 132 ASSERT_TRUE(IsWrongMethodTypeException(soa.Self()->GetException())); in TEST_F() 146 ASSERT_TRUE(IsWrongMethodTypeException(soa.Self()->GetException())); in TEST_F() 160 ASSERT_TRUE(IsWrongMethodTypeException(soa.Self()->GetException())); in TEST_F() 174 ASSERT_TRUE(IsWrongMethodTypeException(soa.Self()->GetException())); in TEST_F() 211 ASSERT_TRUE(IsClassCastException(soa.Self()->GetException())); in TEST_F() 259 ASSERT_TRUE(IsWrongMethodTypeException(soa.Self()->GetException())); in TEST_F() 273 ASSERT_TRUE(IsWrongMethodTypeException(soa.Self()->GetException())); in TEST_F() 287 ASSERT_TRUE(IsWrongMethodTypeException(soa.Self()->GetException())); in TEST_F() 335 ASSERT_TRUE(IsNullPointerException(soa.Self()->GetException())); in TEST_F() 350 ASSERT_TRUE(IsClassCastException(soa.Self()->GetException())); in TEST_F() [all …]
|
D | imtable_test.cc | 57 LOG(ERROR) << self->GetException()->Dump(); in LoadClasses() 67 LOG(ERROR) << self->GetException()->Dump(); in LoadClasses()
|
D | reflection.cc | 390 << self->GetException()->Dump(); in CheckMethodArguments() 500 DCHECK(soa.Self()->GetException()->GetClass()->DescriptorEquals( in InvokeMethodImpl() 502 << soa.Self()->GetException()->GetClass()->PrettyDescriptor(); in InvokeMethodImpl() 506 Handle<mirror::Throwable> cause = hs.NewHandle(soa.Self()->GetException()); in InvokeMethodImpl()
|
D | instrumentation.cc | 157 new_exception_thrown = self->GetException() != exception.Get(); in ProcessMethodUnwindCallbacks() 163 exception.Assign(self->GetException()); in ProcessMethodUnwindCallbacks() 1461 DCHECK_EQ(thread->GetException(), h_exception.Get()); in ExceptionThrownEvent() 1481 DCHECK(thread->GetException() == nullptr); in ExceptionHandledEvent()
|
D | class_linker-inl.h | 326 DCHECK(!Thread::Current()->IsExceptionPending()) << Thread::Current()->GetException()->Dump(); in ResolveMethod() 468 DCHECK(!Thread::Current()->IsExceptionPending()) << Thread::Current()->GetException()->Dump(); in ResolveField()
|
D | thread.cc | 2510 auto* e = GetException(); in AssertPendingOOMException() 2517 LOG(FATAL) << "No pending exception expected: " << GetException()->Dump(); in AssertNoPendingException() 2525 << GetException()->Dump(); in AssertNoPendingExceptionForNewException() 2670 ObjPtr<mirror::Object> exception = self->GetException(); in HandleUncaughtExceptions() 3556 ScopedLocalRef<jobject> cause(GetJniEnv(), soa.AddLocalReference<jobject>(GetException())); in ThrowNewWrappedException() 3889 ObjPtr<mirror::Throwable> exception = GetException(); in QuickDeliverException() 3962 ReadBarrier::MaybeAssertToSpaceInvariant(GetException()); in QuickDeliverException() 4670 DCHECK_EQ(GetException(), Thread::GetDeoptimizationException()); in DeoptimizeWithDeoptimizationException() 4802 : self_(self), hs_(self_), excp_(hs_.NewHandle<art::mirror::Throwable>(self_->GetException())) { in ScopedExceptionStorage() 4809 excp_.Assign(self_->GetException()); in SuppressOldException()
|
D | art_method.cc | 324 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException())); in FindCatchBlock() 427 if (UNLIKELY(self->GetException() == Thread::GetDeoptimizationException())) { in Invoke()
|
D | instrumentation_test.cc | 409 mirror::Throwable* event_exception = self->GetException(); in ReportEvent() 422 mirror::Throwable* event_exception = self->GetException(); in ReportEvent()
|
/art/runtime/entrypoints/quick/ |
D | quick_deoptimization_entrypoints.cc | 77 self->GetException(), in artDeoptimizeFromCompiledCode()
|
D | quick_jni_entrypoints.cc | 97 saved_exception = self->GetException(); in artJniUnlockObject() 104 << self->GetException()->Dump() in artJniUnlockObject()
|
D | quick_trampoline_entrypoints.cc | 738 DCHECK(self->GetException() != Thread::GetDeoptimizationException()); in artQuickToInterpreterBridge() 743 self->GetException(), in artQuickToInterpreterBridge() 2540 << "Enter instrumentation exit stub with pending exception " << self->GetException()->Dump(); in artMethodExitHook() 2589 ret_val, is_ref, self->GetException(), false, deopt_method_type); in artMethodExitHook()
|
/art/runtime/mirror/ |
D | field.cc | 70 mirror::Throwable* exception = self->GetException(); in CreateFromArtField()
|
D | object_test.cc | 142 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TEST_F() 147 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TEST_F() 232 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TestPrimitiveArray() 237 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TestPrimitiveArray() 324 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TEST_F() 329 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TEST_F() 355 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TEST_F() 360 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TEST_F() 380 EXPECT_EQ(mirror::Class::PrettyDescriptor(soa.Self()->GetException()->GetClass()), in TEST_F()
|
D | class.cc | 122 Handle<Throwable> throwable(hs.NewHandle(self->GetException())); in EnsureExtDataPresent() 227 LOG(ERROR) << "Exception: " << self->GetException()->Dump(); in SetStatus() 234 ext->SetErroneousStateError(self->GetException()); in SetStatus()
|
/art/runtime/native/ |
D | java_lang_VMClassLoader.cc | 100 ObjPtr<mirror::Class> exception_class = self->GetException()->GetClass(); in VMClassLoader_findLoadedClass()
|
/art/openjdkjvmti/ |
D | ti_search.cc | 365 << self->GetException()->Dump(); in AddToDexClassLoader()
|
/art/runtime/interpreter/ |
D | interpreter_switch_impl-inl.h | 63 Handle<mirror::Throwable> abort_exception = hs.NewHandle(Self()->GetException()); in CheckTransactionAbort() 127 << Self()->GetException()->Dump(); in PossiblyHandlePendingExceptionOnInvoke() 183 Handle<mirror::Throwable> thr(hs.NewHandle(self->GetException())); in DoDexPcMoveEvent() 431 ObjPtr<mirror::Throwable> exception = Self()->GetException(); in MOVE_EXCEPTION()
|
D | unstarted_runtime.cc | 167 self->GetException()->GetClass()->DescriptorEquals( in CheckExceptionGenerateClassNotFound() 169 << self->GetException()->GetClass()->PrettyDescriptor(); in CheckExceptionGenerateClassNotFound() 274 self->GetException()->GetDetailMessage()->ToModifiedUtf8().c_str()); in UnstartedClassGetPrimitiveClass() 338 mirror::Object::PrettyTypeOf(self->GetException()).c_str()); in UnstartedClassNewInstance() 765 self->GetException()->GetClass()->DescriptorEquals( in UnstartedVmClassLoaderFindLoadedClass() 767 << self->GetException()->GetClass()->PrettyDescriptor(); in UnstartedVmClassLoaderFindLoadedClass()
|
D | interpreter.cc | 473 DCHECK(self->GetException() != Thread::GetDeoptimizationException()); in EnterInterpreterFromDeoptimize()
|
D | interpreter_common.cc | 153 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException())); in MoveToExceptionHandler() 1097 if (!self->GetException()->IsError()) { in DoResolveCallSite()
|
D | unstarted_runtime_test.cc | 1103 CHECK(!self->IsExceptionPending()) << self->GetException()->Dump(); in RunTest() 1130 CHECK(!self->IsExceptionPending()) << name << " " << self->GetException()->Dump(); in RunTest()
|
/art/runtime/entrypoints/ |
D | entrypoint_utils.cc | 141 ObjPtr<mirror::Throwable> exception = soa.Self()->GetException(); in InvokeProxyInvocationHandler()
|
/art/runtime/jit/ |
D | jit.cc | 336 mirror::Throwable* exception = self->GetException(); in CompileMethodInternal() 601 if (UNLIKELY(thread->GetException() == Thread::GetDeoptimizationException())) { in MaybeDoOnStackReplacement() 944 << self->GetException()->Dump(); in Run()
|
/art/adbconnection/ |
D | adbconnection.cc | 834 self->GetException()->Dump(); in AttachJdwpAgent()
|
/art/runtime/jni/ |
D | jni_internal.cc | 543 Handle<mirror::Throwable> cause(hs2.NewHandle(soa.Self()->GetException())); in FindFieldJNI() 551 soa.Self()->GetException()->SetCause(cause.Get()); in FindFieldJNI() 792 if (!soa.Self()->GetException()) { in ExceptionDescribe() 798 hs.NewHandle<mirror::Throwable>(soa.Self()->GetException())); in ExceptionDescribe() 810 LOG(WARNING) << "JNI WARNING: " << mirror::Object::PrettyTypeOf(soa.Self()->GetException()) in ExceptionDescribe() 820 ObjPtr<mirror::Object> exception = soa.Self()->GetException(); in ExceptionOccurred()
|