Searched refs:exception_object (Results 1 – 11 of 11) sorted by relevance
/art/runtime/ |
D | instrumentation.h | 134 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
|
D | trace.h | 217 Handle<mirror::Throwable> exception_object) 219 void ExceptionHandled(Thread* thread, Handle<mirror::Throwable> exception_object)
|
D | instrumentation.cc | 1284 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()
|
D | trace.cc | 769 Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED) in ExceptionThrown() 775 Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED) in ExceptionHandled()
|
D | runtime.cc | 1103 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()
|
D | instrumentation_test.cc | 129 Handle<mirror::Throwable> exception_object ATTRIBUTE_UNUSED) in ExceptionThrown()
|
D | debugger.cc | 251 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/ |
D | jdwp_event.cc | 1144 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()
|
D | jdwp.h | 228 void PostException(const EventLocation* pThrowLoc, mirror::Throwable* exception_object,
|
/art/openjdkjvmti/ |
D | events.cc | 884 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/ |
D | tracefast.cc | 101 art::Handle<art::mirror::Throwable> exception_object ATTRIBUTE_UNUSED) in ExceptionThrown()
|