Home
last modified time | relevance | path

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

/art/runtime/entrypoints/portable/
Dportable_throw_entrypoints.cc66 mirror::Throwable* exception = self->GetException(NULL); in art_portable_get_and_clear_exception()
76 mirror::Throwable* exception = self->GetException(&throw_location); in art_portable_find_catch_block_from_code()
/art/runtime/mirror/
Dart_method.cc220 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException(&throw_location))); in FindCatchBlock()
321 if (UNLIKELY(self->GetException(nullptr) == Thread::GetDeoptimizationException())) { in Invoke()
Dobject_test.cc147 EXPECT_EQ(aioobe, soa.Self()->GetException(NULL)->GetClass()); in TEST_F()
152 EXPECT_EQ(aioobe, soa.Self()->GetException(NULL)->GetClass()); in TEST_F()
236 EXPECT_EQ(aioobe, soa.Self()->GetException(NULL)->GetClass()); in TestPrimitiveArray()
241 EXPECT_EQ(aioobe, soa.Self()->GetException(NULL)->GetClass()); in TestPrimitiveArray()
303 EXPECT_EQ(PrettyDescriptor(soa.Self()->GetException(NULL)->GetClass()), in TEST_F()
Dclass.cc82 Handle<mirror::Throwable> old_exception(hs.NewHandle(self->GetException(&old_throw_location))); in SetStatus()
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h623 saved_exception = self->GetException(&saved_throw_location); in UnlockJniSynchronizedMethod()
632 << self->GetException(NULL)->Dump(); in UnlockJniSynchronizedMethod()
Dentrypoint_utils.cc311 mirror::Throwable* exception = soa.Self()->GetException(NULL); in InvokeProxyInvocationHandler()
/art/runtime/
Druntime.cc249 mirror::Throwable* exception = self->GetException(&throw_location); in DumpThread()
863 pre_allocated_OutOfMemoryError_ = GcRoot<mirror::Throwable>(self->GetException(NULL)); in Init()
870 pre_allocated_NoClassDefFoundError_ = GcRoot<mirror::Throwable>(self->GetException(NULL)); in Init()
Dthread.cc1004 exc = scope.NewHandle(GetException(&exc_location)); in DumpJavaStack()
1142 mirror::Throwable* exception = GetException(nullptr); in AssertNoPendingException()
1150 mirror::Throwable* exception = GetException(nullptr); in AssertNoPendingExceptionForNewException()
1671 ScopedLocalRef<jobject> cause(GetJniEnv(), soa.AddLocalReference<jobject>(GetException(nullptr))); in ThrowNewWrappedException()
1954 mirror::Throwable* exception = GetException(&throw_location); in QuickDeliverException()
Djni_internal.cc218 Handle<mirror::Throwable> cause(hs.NewHandle(soa.Self()->GetException(&throw_location))); in FindFieldID()
225 soa.Self()->GetException(nullptr)->SetCause(cause.Get()); in FindFieldID()
719 if (!soa.Self()->GetException(nullptr)) { in ExceptionDescribe()
732 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location); in ExceptionDescribe()
750 LOG(WARNING) << "JNI WARNING: " << PrettyTypeOf(soa.Self()->GetException(nullptr)) in ExceptionDescribe()
764 mirror::Object* exception = soa.Self()->GetException(nullptr); in ExceptionOccurred()
Dreflection.cc375 << self->GetException(nullptr)->Dump(); in CheckMethodArguments()
Dthread.h317 mirror::Throwable* GetException(ThrowLocation* throw_location) const in GetException() function
Dclass_linker.cc3556 Handle<mirror::Throwable> cause(hs.NewHandle(self->GetException(nullptr))); in VerifyClass()
3562 self->GetException(nullptr)->SetCause(cause.Get()); in VerifyClass()
4195 << (self->GetException(nullptr) != nullptr ? self->GetException(nullptr)->Dump() : ""); in InitializeClass()
5658 Handle<mirror::Throwable> cause(hs.NewHandle(self->GetException(nullptr))); in ResolveType()
5663 self->GetException(nullptr)->SetCause(cause.Get()); in ResolveType()
Dmonitor.cc308 << self->GetException(NULL)->Dump() << "\n" << ss.str(); in ThrowIllegalMonitorStateExceptionF()
Dinstrumentation.cc1012 DCHECK_EQ(thread->GetException(nullptr), exception_object); in ExceptionCaughtEvent()
Dclass_linker_test.cc52 mirror::Object* exception = self->GetException(NULL); in AssertNonExistentClass()
Dcheck_jni.cc808 mirror::Throwable* exception = self->GetException(&throw_location); in CheckThread()
Ddebugger.cc3786 mirror::Throwable* old_exception_obj = soa.Self()->GetException(&old_throw_location); in ExecuteMethod()
3814 mirror::Throwable* exception = soa.Self()->GetException(NULL); in ExecuteMethod()
/art/compiler/driver/
Dcompiler_driver.cc1570 mirror::Throwable* exception = self->GetException(nullptr); in CheckAndClearResolveException()
1715 mirror::Throwable* exception = soa.Self()->GetException(nullptr); in ResolveType()
1929 mirror::Throwable* exception = soa.Self()->GetException(&throw_location); in InitializeClass()
2159 << self->GetException(nullptr)->Dump(); in CompileMethod()
/art/runtime/arch/
Dstub_test.cc1175 EXPECT_FALSE(self->IsExceptionPending()) << PrettyTypeOf(self->GetException(nullptr)); in TEST_F()
1751 ASSERT_FALSE(self->IsExceptionPending()) << PrettyTypeOf(self->GetException(nullptr)); in TEST_F()
/art/runtime/interpreter/
Dinterpreter_common.cc457 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException(&throw_location))); in FindNextInstructionFollowingException()
Dinterpreter_switch_impl.cc167 Throwable* exception = self->GetException(nullptr); in ExecuteSwitchImpl()
Dinterpreter_goto_table_impl.cc240 Throwable* exception = self->GetException(nullptr); in ExecuteGotoImpl()
/art/compiler/llvm/
Dintrinsic_func_list.def117 _EVAL_DEF_INTRINSICS_FUNC(GetException,
Dgbc_expander.cc2892 case IntrinsicHelper::GetException: { in ExpandIntrinsic()
/art/compiler/dex/portable/
Dmir_to_gbc.cc273 art::llvm::IntrinsicHelper::GetException); in ConvertMoveException()