/art/runtime/ |
D | method_handles_test.cc | 127 ASSERT_TRUE(IsWrongMethodTypeException(soa.Self()->GetException())); in TEST_F() 141 ASSERT_TRUE(IsWrongMethodTypeException(soa.Self()->GetException())); in TEST_F() 155 ASSERT_TRUE(IsWrongMethodTypeException(soa.Self()->GetException())); in TEST_F() 169 ASSERT_TRUE(IsWrongMethodTypeException(soa.Self()->GetException())); in TEST_F() 206 ASSERT_TRUE(IsClassCastException(soa.Self()->GetException())); in TEST_F() 254 ASSERT_TRUE(IsWrongMethodTypeException(soa.Self()->GetException())); in TEST_F() 268 ASSERT_TRUE(IsWrongMethodTypeException(soa.Self()->GetException())); in TEST_F() 282 ASSERT_TRUE(IsWrongMethodTypeException(soa.Self()->GetException())); in TEST_F() 330 ASSERT_TRUE(IsNullPointerException(soa.Self()->GetException())); in TEST_F() 345 ASSERT_TRUE(IsWrongMethodTypeException(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 | instrumentation.cc | 139 new_exception_thrown = self_->GetException() != exception.Get(); in PopFramesTo() 142 exception.Assign(self_->GetException()); in PopFramesTo() 1289 DCHECK_EQ(thread->GetException(), h_exception.Get()); in ExceptionThrownEvent() 1309 DCHECK(thread->GetException() == nullptr); in ExceptionHandledEvent()
|
D | well_known_classes.cc | 178 LOG(FATAL_WITHOUT_ABORT) << soa.Self()->GetException()->Dump(); in CacheField() 195 LOG(FATAL_WITHOUT_ABORT) << soa.Self()->GetException()->Dump(); in CacheMethod()
|
D | art_method.cc | 262 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException())); in FindCatchBlock() 365 if (UNLIKELY(self->GetException() == Thread::GetDeoptimizationException())) { in Invoke()
|
D | thread.cc | 1038 LOG(ERROR) << self->GetException()->Dump(); in Attach() 2145 exc = scope.NewHandle(GetException()); in DumpJavaStack() 2340 auto* e = GetException(); in AssertPendingOOMException() 2348 LOG(FATAL) << "No pending exception expected: " << GetException()->Dump(); in AssertNoPendingException() 2356 << GetException()->Dump(); in AssertNoPendingExceptionForNewException() 3196 ScopedLocalRef<jobject> cause(GetJniEnv(), soa.AddLocalReference<jobject>(GetException())); in ThrowNewWrappedException() 3531 ObjPtr<mirror::Throwable> exception = GetException(); in QuickDeliverException() 3625 ReadBarrier::MaybeAssertToSpaceInvariant(GetException()); in QuickDeliverException() 4166 DCHECK_EQ(GetException(), Thread::GetDeoptimizationException()); in DeoptimizeWithDeoptimizationException()
|
D | instrumentation_test.cc | 415 mirror::Throwable* event_exception = self->GetException(); in ReportEvent() 428 mirror::Throwable* event_exception = self->GetException(); in ReportEvent()
|
D | class_linker.cc | 289 << klass->GetLocation() << "\n" << Thread::Current()->GetException()->Dump(); in VlogClassInitializationFailure() 311 << self->GetException()->Dump(); in WrapExceptionInInitializer() 2826 if (MatchesDexFileCaughtExceptions(self->GetException(), class_linker)) { in FilterDexFileCaughtExceptions() 3028 DCHECK(!MatchesDexFileCaughtExceptions(self->GetException(), this)); in FindClass() 3206 VLOG(class_linker) << self->GetException()->Dump(); in DefineClass() 4473 Handle<mirror::Throwable> cause(hs.NewHandle(self->GetException())); in AttemptSupertypeVerification() 4481 self->GetException()->SetCause(cause.Get()); in AttemptSupertypeVerification() 5184 mirror::Class::PrettyClass(self->GetException()->GetClass())); in InitializeClass() 5281 << (self->GetException() != nullptr ? self->GetException()->Dump() : ""); in InitializeClass() 8491 Handle<mirror::Throwable> cause(hs.NewHandle(self->GetException())); in DoResolveType() [all …]
|
D | reflection.cc | 390 << self->GetException()->Dump(); in CheckMethodArguments()
|
/art/runtime/entrypoints/quick/ |
D | quick_deoptimization_entrypoints.cc | 74 self->GetException(), in artDeoptimizeFromCompiledCode()
|
D | quick_trampoline_entrypoints.cc | 816 if (force_frame_pop && self->GetException() != nullptr) { in artQuickToInterpreterBridge() 818 << self->GetException()->Dump(); in artQuickToInterpreterBridge() 825 force_frame_pop ? nullptr : self->GetException(), in artQuickToInterpreterBridge() 1178 << self->GetException()->Dump(); in artInstrumentationMethodExitFromCode()
|
/art/runtime/mirror/ |
D | object_test.cc | 138 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TEST_F() 143 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TEST_F() 227 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TestPrimitiveArray() 232 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TestPrimitiveArray() 277 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TEST_F() 282 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TEST_F() 308 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TEST_F() 313 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TEST_F() 333 EXPECT_EQ(mirror::Class::PrettyDescriptor(soa.Self()->GetException()->GetClass()), in TEST_F()
|
D | field-inl.h | 60 mirror::Throwable* exception = self->GetException(); in CreateFromArtField()
|
D | class.cc | 106 Handle<Throwable> throwable(hs.NewHandle(self->GetException())); in EnsureExtDataPresent() 171 LOG(ERROR) << "Exception: " << self->GetException()->Dump(); in SetStatus() 178 ext->SetVerifyError(self->GetException()); in SetStatus()
|
/art/runtime/native/ |
D | java_lang_VMClassLoader.cc | 100 ObjPtr<mirror::Class> exception = self->GetException()->GetClass(); in VMClassLoader_findLoadedClass()
|
/art/runtime/entrypoints/ |
D | entrypoint_utils.cc | 126 ObjPtr<mirror::Throwable> exception = soa.Self()->GetException(); in InvokeProxyInvocationHandler()
|
D | entrypoint_utils-inl.h | 748 saved_exception = self->GetException(); in UnlockJniSynchronizedMethod() 757 << self->GetException()->Dump(); in UnlockJniSynchronizedMethod()
|
/art/runtime/jit/ |
D | jit.cc | 288 mirror::Throwable* exception = self->GetException(); in CompileMethod() 535 if (UNLIKELY(thread->GetException() == Thread::GetDeoptimizationException())) { in MaybeDoOnStackReplacement()
|
/art/runtime/interpreter/ |
D | unstarted_runtime.cc | 167 std::string type(mirror::Object::PrettyTypeOf(self->GetException())); in CheckExceptionGenerateClassNotFound() 265 self->GetException()->GetDetailMessage()->ToModifiedUtf8().c_str()); in UnstartedClassGetPrimitiveClass() 329 mirror::Object::PrettyTypeOf(self->GetException()).c_str()); in UnstartedClassNewInstance() 763 std::string type(mirror::Object::PrettyTypeOf(self->GetException())); in UnstartedVmClassLoaderFindLoadedClass()
|
D | unstarted_runtime_test.cc | 1105 CHECK(!self->IsExceptionPending()) << self->GetException()->Dump(); in RunTest() 1130 CHECK(!self->IsExceptionPending()) << name << " " << self->GetException()->Dump(); in RunTest()
|
D | interpreter_common.cc | 485 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException())); in EXPLICIT_DO_IPUT_QUICK_ALL_TEMPLATE_DECL() 1440 if (!self->GetException()->IsError()) { in DoResolveCallSite()
|
/art/dex2oat/driver/ |
D | compiler_driver.cc | 461 << self->GetException()->Dump(); in CompileMethodHarness() 1529 mirror::Throwable* exception = self->GetException(); in CheckAndClearResolveException() 1662 mirror::Throwable* exception = soa.Self()->GetException(); in Visit() 2226 mirror::Throwable* exception = soa.Self()->GetException(); in TryInitializeClass()
|
/art/runtime/jni/ |
D | jni_internal.cc | 508 Handle<mirror::Throwable> cause(hs2.NewHandle(soa.Self()->GetException())); in FindFieldID() 516 soa.Self()->GetException()->SetCause(cause.Get()); in FindFieldID() 778 if (!soa.Self()->GetException()) { in ExceptionDescribe() 784 hs.NewHandle<mirror::Throwable>(soa.Self()->GetException())); in ExceptionDescribe() 796 LOG(WARNING) << "JNI WARNING: " << mirror::Object::PrettyTypeOf(soa.Self()->GetException()) in ExceptionDescribe() 806 ObjPtr<mirror::Object> exception = soa.Self()->GetException(); in ExceptionOccurred()
|
/art/adbconnection/ |
D | adbconnection.cc | 829 self->GetException()->Dump(); in AttachJdwpAgent()
|
/art/runtime/arch/ |
D | stub_test.cc | 1060 EXPECT_FALSE(self->IsExceptionPending()) << mirror::Object::PrettyTypeOf(self->GetException()); in TEST_F() 1940 ASSERT_FALSE(self->IsExceptionPending()) << mirror::Object::PrettyTypeOf(self->GetException()); in TEST_F()
|