Home
last modified time | relevance | path

Searched refs:GetException (Results 1 – 25 of 37) sorted by relevance

12

/art/runtime/
Dmethod_handles_test.cc127 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 …]
Dimtable_test.cc57 LOG(ERROR) << self->GetException()->Dump(); in LoadClasses()
67 LOG(ERROR) << self->GetException()->Dump(); in LoadClasses()
Dinstrumentation.cc152 new_exception_thrown = self_->GetException() != exception.Get(); in PopFramesTo()
162 exception.Assign(self_->GetException()); in PopFramesTo()
1357 DCHECK_EQ(thread->GetException(), h_exception.Get()); in ExceptionThrownEvent()
1377 DCHECK(thread->GetException() == nullptr); in ExceptionHandledEvent()
Dwell_known_classes.cc197 LOG(FATAL_WITHOUT_ABORT) << soa.Self()->GetException()->Dump(); in CacheField()
223 LOG(FATAL_WITHOUT_ABORT) << soa.Self()->GetException()->Dump(); in CacheMethod()
Dart_method.cc271 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException())); in FindCatchBlock()
373 if (UNLIKELY(self->GetException() == Thread::GetDeoptimizationException())) { in Invoke()
Ddebugger.cc211 << self->GetException()->Dump(); in DdmHandleChunk()
259 type) << std::endl << self->GetException()->Dump(); in DdmHandleChunk()
Dinstrumentation_test.cc418 mirror::Throwable* event_exception = self->GetException(); in ReportEvent()
431 mirror::Throwable* event_exception = self->GetException(); in ReportEvent()
/art/runtime/entrypoints/quick/
Dquick_deoptimization_entrypoints.cc74 self->GetException(), in artDeoptimizeFromCompiledCode()
Dquick_jni_entrypoints.cc132 saved_exception = self->GetException(); in UnlockJniSynchronizedMethod()
141 << self->GetException()->Dump(); in UnlockJniSynchronizedMethod()
Dquick_trampoline_entrypoints.cc732 if (force_frame_pop && self->GetException() != nullptr) { in artQuickToInterpreterBridge()
734 << self->GetException()->Dump(); in artQuickToInterpreterBridge()
741 force_frame_pop ? nullptr : self->GetException(), in artQuickToInterpreterBridge()
1097 << self->GetException()->Dump(); in artInstrumentationMethodExitFromCode()
/art/runtime/mirror/
Dfield-inl.h60 mirror::Throwable* exception = self->GetException(); in CreateFromArtField()
Dobject_test.cc138 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()
228 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TestPrimitiveArray()
233 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TestPrimitiveArray()
320 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TEST_F()
325 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TEST_F()
351 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TEST_F()
356 EXPECT_OBJ_PTR_EQ(aioobe.Get(), soa.Self()->GetException()->GetClass()); in TEST_F()
376 EXPECT_EQ(mirror::Class::PrettyDescriptor(soa.Self()->GetException()->GetClass()), in TEST_F()
Dclass.cc154 Handle<Throwable> throwable(hs.NewHandle(self->GetException())); in EnsureExtDataPresent()
259 LOG(ERROR) << "Exception: " << self->GetException()->Dump(); in SetStatus()
266 ext->SetVerifyError(self->GetException()); in SetStatus()
/art/runtime/native/
Djava_lang_VMClassLoader.cc100 ObjPtr<mirror::Class> exception = self->GetException()->GetClass(); in VMClassLoader_findLoadedClass()
/art/openjdkjvmti/
Dti_search.cc370 << self->GetException()->Dump(); in AddToDexClassLoader()
Devents.cc733 DCHECK(!self->IsExceptionPending()) << self->GetException()->Dump(); in MethodExited()
763 art::Handle<art::mirror::Throwable> old_exception(hs.NewHandle(self->GetException())); in MethodUnwind()
/art/runtime/entrypoints/
Dentrypoint_utils.cc126 ObjPtr<mirror::Throwable> exception = soa.Self()->GetException(); in InvokeProxyInvocationHandler()
/art/runtime/jit/
Djit.cc349 mirror::Throwable* exception = self->GetException(); in CompileMethod()
605 if (UNLIKELY(thread->GetException() == Thread::GetDeoptimizationException())) { in MaybeDoOnStackReplacement()
920 << self->GetException()->Dump(); in Run()
/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h105 << self->GetException()->Dump(); in PossiblyHandlePendingExceptionOnInvoke()
210 Handle<mirror::Throwable> thr(hs.NewHandle(self->GetException())); in DoDexPcMoveEvent()
454 ObjPtr<mirror::Throwable> exception = self->GetException(); in MOVE_EXCEPTION()
Dunstarted_runtime.cc167 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()
Dunstarted_runtime_test.cc1105 CHECK(!self->IsExceptionPending()) << self->GetException()->Dump(); in RunTest()
1130 CHECK(!self->IsExceptionPending()) << name << " " << self->GetException()->Dump(); in RunTest()
Dinterpreter_common.cc158 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException())); in MoveToExceptionHandler()
1119 if (!self->GetException()->IsError()) { in DoResolveCallSite()
/art/runtime/jni/
Djni_internal.cc366 Handle<mirror::Throwable> cause(hs2.NewHandle(soa.Self()->GetException())); in FindFieldJNI()
374 soa.Self()->GetException()->SetCause(cause.Get()); in FindFieldJNI()
617 if (!soa.Self()->GetException()) { in ExceptionDescribe()
623 hs.NewHandle<mirror::Throwable>(soa.Self()->GetException())); in ExceptionDescribe()
635 LOG(WARNING) << "JNI WARNING: " << mirror::Object::PrettyTypeOf(soa.Self()->GetException()) in ExceptionDescribe()
645 ObjPtr<mirror::Object> exception = soa.Self()->GetException(); in ExceptionOccurred()
/art/dex2oat/driver/
Dcompiler_driver.cc465 << self->GetException()->Dump(); in CompileMethodHarness()
1556 mirror::Throwable* exception = self->GetException(); in CheckAndClearResolveException()
1689 mirror::Throwable* exception = soa.Self()->GetException(); in Visit()
2299 mirror::Throwable* exception = soa.Self()->GetException(); in TryInitializeClass()
/art/adbconnection/
Dadbconnection.cc796 self->GetException()->Dump(); in AttachJdwpAgent()

12