Searched refs:exception_object (Results 1 – 8 of 8) sorted by relevance
/art/runtime/ |
D | trace.h | 218 Handle<mirror::Throwable> exception_object) 220 void ExceptionHandled(Thread* thread, Handle<mirror::Throwable> exception_object)
|
D | instrumentation.h | 143 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
|
D | instrumentation.cc | 1352 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()
|
D | trace.cc | 774 Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED) in ExceptionThrown() 780 Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED) in ExceptionHandled()
|
D | runtime.cc | 1171 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()
|
D | instrumentation_test.cc | 132 Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED) in ExceptionThrown()
|
/art/tools/tracefast-plugin/ |
D | tracefast.cc | 104 art::Handle<art::mirror::Throwable> exception_object ATTRIBUTE_UNUSED) in ExceptionThrown()
|
/art/openjdkjvmti/ |
D | events.cc | 994 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()
|