Home
last modified time | relevance | path

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

/art/runtime/
Dinstrumentation.h134 Handle<mirror::Throwable> exception_object)
138 virtual void ExceptionHandled(Thread* thread, Handle<mirror::Throwable> exception_object)
462 void ExceptionThrownEvent(Thread* thread, mirror::Throwable* exception_object) const
467 void ExceptionHandledEvent(Thread* thread, mirror::Throwable* exception_object) const
Dtrace.h217 Handle<mirror::Throwable> exception_object)
219 void ExceptionHandled(Thread* thread, Handle<mirror::Throwable> exception_object)
Dinstrumentation.cc1284 mirror::Throwable* exception_object) const { in ExceptionThrownEvent()
1287 Handle<mirror::Throwable> h_exception(hs.NewHandle(exception_object)); in ExceptionThrownEvent()
1303 mirror::Throwable* exception_object) const { in ExceptionHandledEvent()
1306 Handle<mirror::Throwable> h_exception(hs.NewHandle(exception_object)); in ExceptionHandledEvent()
Dtrace.cc769 Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED) in ExceptionThrown()
775 Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED) in ExceptionHandled()
Druntime.cc1103 ObjPtr<mirror::Throwable> exception_object = ObjPtr<mirror::Throwable>::DownCast( in CreatePreAllocatedException() local
1105 CHECK(exception_object != nullptr); in CreatePreAllocatedException()
1106 *exception = GcRoot<mirror::Throwable>(exception_object); in CreatePreAllocatedException()
Dinstrumentation_test.cc129 Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED) in ExceptionThrown()
Ddebugger.cc251 Handle<mirror::Throwable> exception_object) in ExceptionThrown() argument
253 Dbg::PostException(exception_object.Get()); in ExceptionThrown()
2952 void Dbg::PostException(mirror::Throwable* exception_object) { in PostException() argument
2958 Handle<mirror::Throwable> h_exception(handle_scope.NewHandle(exception_object)); in PostException()
/art/runtime/jdwp/
Djdwp_event.cc1144 void JdwpState::PostException(const EventLocation* pThrowLoc, mirror::Throwable* exception_object, in PostException() argument
1146 DCHECK(exception_object != nullptr); in PostException()
1161 basket.exceptionClass.Assign(exception_object->GetClass()); in PostException()
1180 ObjectId exceptionId = registry->Add(exception_object); in PostException()
1187 std::string exceptionClassName(mirror::Class::PrettyDescriptor(exception_object->GetClass())); in PostException()
Djdwp.h228 void PostException(const EventLocation* pThrowLoc, mirror::Throwable* exception_object,
/art/openjdkjvmti/
Devents.cc884 void ExceptionThrown(art::Thread* self, art::Handle<art::mirror::Throwable> exception_object) in ExceptionThrown() argument
886 DCHECK(self->IsExceptionThrownByCurrentMethod(exception_object.Get())); in ExceptionThrown()
893 FindCatchMethodsFromThrow(self, exception_object, &catch_method, &catch_pc); in ExceptionThrown()
899 AddLocalRef<jobject>(jnienv, exception_object.Get())); in ExceptionThrown()
914 void ExceptionHandled(art::Thread* self, art::Handle<art::mirror::Throwable> exception_object) in ExceptionHandled() argument
925 AddLocalRef<jobject>(jnienv, exception_object.Get())); in ExceptionHandled()
/art/tools/tracefast-plugin/
Dtracefast.cc101 art::Handle<art::mirror::Throwable> exception_object ATTRIBUTE_UNUSED) in ExceptionThrown()