Home
last modified time | relevance | path

Searched refs:exception_object (Results 1 – 8 of 8) sorted by relevance

/art/runtime/
Dtrace.h218 Handle<mirror::Throwable> exception_object)
220 void ExceptionHandled(Thread* thread, Handle<mirror::Throwable> exception_object)
Dinstrumentation.h143 Handle<mirror::Throwable> exception_object)
147 virtual void ExceptionHandled(Thread* thread, Handle<mirror::Throwable> exception_object)
485 void ExceptionThrownEvent(Thread* thread, ObjPtr<mirror::Throwable> exception_object) const
490 void ExceptionHandledEvent(Thread* thread, ObjPtr<mirror::Throwable> exception_object) const
Dinstrumentation.cc1352 ObjPtr<mirror::Throwable> exception_object) const { in ExceptionThrownEvent()
1355 Handle<mirror::Throwable> h_exception(hs.NewHandle(exception_object)); in ExceptionThrownEvent()
1371 ObjPtr<mirror::Throwable> exception_object) const { in ExceptionHandledEvent()
1374 Handle<mirror::Throwable> h_exception(hs.NewHandle(exception_object)); in ExceptionHandledEvent()
Dtrace.cc774 Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED) in ExceptionThrown()
780 Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED) in ExceptionHandled()
Druntime.cc1171 ObjPtr<mirror::Throwable> exception_object = ObjPtr<mirror::Throwable>::DownCast( in CreatePreAllocatedException() local
1173 CHECK(exception_object != nullptr); in CreatePreAllocatedException()
1174 *exception = GcRoot<mirror::Throwable>(exception_object); in CreatePreAllocatedException()
Dinstrumentation_test.cc132 Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED) in ExceptionThrown()
/art/tools/tracefast-plugin/
Dtracefast.cc104 art::Handle<art::mirror::Throwable> exception_object ATTRIBUTE_UNUSED) in ExceptionThrown()
/art/openjdkjvmti/
Devents.cc994 void ExceptionThrown(art::Thread* self, art::Handle<art::mirror::Throwable> exception_object) in ExceptionThrown() argument
996 DCHECK(self->IsExceptionThrownByCurrentMethod(exception_object.Get())); in ExceptionThrown()
1003 FindCatchMethodsFromThrow(self, exception_object, &catch_method, &catch_pc); in ExceptionThrown()
1009 AddLocalRef<jobject>(jnienv, exception_object.Get())); in ExceptionThrown()
1024 void ExceptionHandled(art::Thread* self, art::Handle<art::mirror::Throwable> exception_object) in ExceptionHandled() argument
1035 AddLocalRef<jobject>(jnienv, exception_object.Get())); in ExceptionHandled()