/art/runtime/ |
D | method_handles_test.cc | 126 ASSERT_TRUE(IsWrongMethodTypeException(soa.Self()->GetException())); in TEST_F() 140 ASSERT_TRUE(IsWrongMethodTypeException(soa.Self()->GetException())); in TEST_F() 154 ASSERT_TRUE(IsWrongMethodTypeException(soa.Self()->GetException())); in TEST_F() 168 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 | well_known_classes.cc | 181 LOG(FATAL_WITHOUT_ABORT) << soa.Self()->GetException()->Dump(); in CacheField() 198 LOG(FATAL_WITHOUT_ABORT) << soa.Self()->GetException()->Dump(); in CacheMethod()
|
D | thread.cc | 848 LOG(ERROR) << self->GetException()->Dump(); in Attach() 1956 exc = scope.NewHandle(GetException()); in DumpJavaStack() 2140 auto* e = GetException(); in AssertPendingOOMException() 2148 LOG(FATAL) << "No pending exception expected: " << GetException()->Dump(); in AssertNoPendingException() 2156 << GetException()->Dump(); in AssertNoPendingExceptionForNewException() 3001 ScopedLocalRef<jobject> cause(GetJniEnv(), soa.AddLocalReference<jobject>(GetException())); in ThrowNewWrappedException() 3332 ObjPtr<mirror::Throwable> exception = GetException(); in QuickDeliverException() 3389 ReadBarrier::MaybeAssertToSpaceInvariant(GetException()); in QuickDeliverException() 3953 DCHECK_EQ(GetException(), Thread::GetDeoptimizationException()); in DeoptimizeWithDeoptimizationException()
|
D | art_method.cc | 277 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException())); in FindCatchBlock() 378 if (UNLIKELY(self->GetException() == Thread::GetDeoptimizationException())) { in Invoke()
|
D | instrumentation_test.cc | 429 mirror::Throwable* event_exception = self->GetException(); in ReportEvent() 445 mirror::Throwable* event_exception = self->GetException(); in ReportEvent()
|
D | instrumentation.cc | 1161 DCHECK_EQ(thread->GetException(), h_exception.Get()); in ExceptionThrownEvent() 1181 DCHECK(thread->GetException() == nullptr); in ExceptionHandledEvent()
|
D | jni_internal.cc | 320 Handle<mirror::Throwable> cause(hs2.NewHandle(soa.Self()->GetException())); in FindFieldID() 327 soa.Self()->GetException()->SetCause(cause.Get()); in FindFieldID() 583 if (!soa.Self()->GetException()) { in ExceptionDescribe() 589 hs.NewHandle<mirror::Throwable>(soa.Self()->GetException())); in ExceptionDescribe() 601 LOG(WARNING) << "JNI WARNING: " << mirror::Object::PrettyTypeOf(soa.Self()->GetException()) in ExceptionDescribe() 611 mirror::Object* exception = soa.Self()->GetException(); in ExceptionOccurred()
|
D | runtime.cc | 487 mirror::Throwable* exception = self->GetException(); in DumpThread() 1530 pre_allocated_OutOfMemoryError_ = GcRoot<mirror::Throwable>(self->GetException()); in Init() 1537 pre_allocated_NoClassDefFoundError_ = GcRoot<mirror::Throwable>(self->GetException()); in Init()
|
D | class_linker.cc | 257 << klass->GetLocation() << "\n" << Thread::Current()->GetException()->Dump(); in VlogClassInitializationFailure() 275 << self->GetException()->Dump(); in WrapExceptionInInitializer() 2759 VLOG(class_linker) << self->GetException()->Dump(); in DefineClass() 3993 Handle<mirror::Throwable> cause(hs.NewHandle(self->GetException())); in AttemptSupertypeVerification() 4001 self->GetException()->SetCause(cause.Get()); in AttemptSupertypeVerification() 4692 mirror::Class::PrettyClass(self->GetException()->GetClass())); in InitializeClass() 4786 << (self->GetException() != nullptr ? self->GetException()->Dump() : ""); in InitializeClass() 7827 Handle<mirror::Throwable> cause(hs.NewHandle(self->GetException())); in DoResolveType() 7832 self->GetException()->SetCause(cause.Get()); in DoResolveType()
|
D | reflection.cc | 388 << self->GetException()->Dump(); in CheckMethodArguments()
|
/art/runtime/entrypoints/quick/ |
D | quick_deoptimization_entrypoints.cc | 78 self->GetException(), in artDeoptimizeFromCompiledCode()
|
D | quick_trampoline_entrypoints.cc | 849 self->GetException(), in artQuickToInterpreterBridge() 1158 << self->GetException()->Dump(); in artInstrumentationMethodExitFromCode()
|
/art/runtime/mirror/ |
D | field-inl.h | 44 mirror::Throwable* exception = self->GetException(); in CreateFromArtField()
|
D | object_test.cc | 136 EXPECT_EQ(aioobe, soa.Self()->GetException()->GetClass()); in TEST_F() 141 EXPECT_EQ(aioobe, soa.Self()->GetException()->GetClass()); in TEST_F() 225 EXPECT_EQ(aioobe, soa.Self()->GetException()->GetClass()); in TestPrimitiveArray() 230 EXPECT_EQ(aioobe, soa.Self()->GetException()->GetClass()); in TestPrimitiveArray() 274 EXPECT_EQ(aioobe, soa.Self()->GetException()->GetClass()); in TEST_F() 279 EXPECT_EQ(aioobe, soa.Self()->GetException()->GetClass()); in TEST_F() 304 EXPECT_EQ(aioobe, soa.Self()->GetException()->GetClass()); in TEST_F() 309 EXPECT_EQ(aioobe, soa.Self()->GetException()->GetClass()); in TEST_F() 328 EXPECT_EQ(mirror::Class::PrettyDescriptor(soa.Self()->GetException()->GetClass()), in TEST_F()
|
D | class.cc | 121 Handle<Throwable> throwable(hs.NewHandle(self->GetException())); in EnsureExtDataPresent() 182 LOG(ERROR) << "Exception: " << self->GetException()->Dump(); in SetStatus() 189 ext->SetVerifyError(self->GetException()); in SetStatus()
|
/art/runtime/native/ |
D | java_lang_VMClassLoader.cc | 94 ObjPtr<mirror::Class> exception = self->GetException()->GetClass(); in VMClassLoader_findLoadedClass()
|
/art/runtime/entrypoints/ |
D | entrypoint_utils.cc | 123 mirror::Throwable* exception = soa.Self()->GetException(); in InvokeProxyInvocationHandler()
|
D | entrypoint_utils-inl.h | 778 saved_exception = self->GetException(); in UnlockJniSynchronizedMethod() 787 << self->GetException()->Dump(); in UnlockJniSynchronizedMethod()
|
/art/runtime/jit/ |
D | jit.cc | 313 mirror::Throwable* exception = self->GetException(); in CompileMethod() 574 if (UNLIKELY(thread->GetException() == Thread::GetDeoptimizationException())) { in MaybeDoOnStackReplacement()
|
/art/runtime/interpreter/ |
D | unstarted_runtime.cc | 163 std::string type(mirror::Object::PrettyTypeOf(self->GetException())); in CheckExceptionGenerateClassNotFound() 253 self->GetException()->GetDetailMessage()->ToModifiedUtf8().c_str()); in UnstartedClassGetPrimitiveClass() 318 mirror::Object::PrettyTypeOf(self->GetException()).c_str()); in UnstartedClassNewInstance() 755 std::string type(mirror::Object::PrettyTypeOf(self->GetException())); in UnstartedVmClassLoaderFindLoadedClass()
|
D | unstarted_runtime_test.cc | 1127 CHECK(!self->IsExceptionPending()) << self->GetException()->Dump(); in RunTest() 1152 CHECK(!self->IsExceptionPending()) << name << " " << self->GetException()->Dump(); in RunTest()
|
/art/compiler/driver/ |
D | compiler_driver.cc | 512 << self->GetException()->Dump(); in CompileMethodHarness() 1640 mirror::Throwable* exception = self->GetException(); in CheckAndClearResolveException() 1813 mirror::Throwable* exception = soa.Self()->GetException(); in Visit() 2355 mirror::Throwable* exception = soa.Self()->GetException(); in TryInitializeClass()
|
/art/adbconnection/ |
D | adbconnection.cc | 835 self->GetException()->Dump(); in AttachJdwpAgent()
|
/art/runtime/arch/ |
D | stub_test.cc | 1057 EXPECT_FALSE(self->IsExceptionPending()) << mirror::Object::PrettyTypeOf(self->GetException()); in TEST_F() 1925 ASSERT_FALSE(self->IsExceptionPending()) << mirror::Object::PrettyTypeOf(self->GetException()); in TEST_F()
|