Searched refs:exception_object (Results 1 – 8 of 8) sorted by relevance
/art/runtime/jdwp/ |
D | jdwp_event.cc | 1103 void JdwpState::PostException(const EventLocation* pThrowLoc, mirror::Throwable* exception_object, in PostException() argument 1105 DCHECK(exception_object != nullptr); in PostException() 1120 basket.exceptionClass.Assign(exception_object->GetClass()); in PostException() 1139 ObjectId exceptionId = registry->Add(exception_object); in PostException() 1146 std::string exceptionClassName(PrettyDescriptor(exception_object->GetClass())); in PostException()
|
D | jdwp.h | 222 void PostException(const EventLocation* pThrowLoc, mirror::Throwable* exception_object,
|
/art/runtime/ |
D | instrumentation.h | 94 virtual void ExceptionCaught(Thread* thread, mirror::Throwable* exception_object) 336 void ExceptionCaughtEvent(Thread* thread, mirror::Throwable* exception_object) const
|
D | instrumentation.cc | 933 mirror::Throwable* exception_object) const { in ExceptionCaughtEvent() 935 DCHECK_EQ(thread->GetException(), exception_object); in ExceptionCaughtEvent() 939 listener->ExceptionCaught(thread, exception_object); in ExceptionCaughtEvent() 941 thread->SetException(exception_object); in ExceptionCaughtEvent()
|
D | trace.h | 169 void ExceptionCaught(Thread* thread, mirror::Throwable* exception_object)
|
D | trace.cc | 795 void Trace::ExceptionCaught(Thread* thread, mirror::Throwable* exception_object) in ExceptionCaught() argument 797 UNUSED(thread, exception_object); in ExceptionCaught()
|
D | instrumentation_test.cc | 96 mirror::Throwable* exception_object ATTRIBUTE_UNUSED) in ExceptionCaught()
|
D | debugger.cc | 324 void ExceptionCaught(Thread* thread ATTRIBUTE_UNUSED, mirror::Throwable* exception_object) in ExceptionCaught() argument 326 Dbg::PostException(exception_object); in ExceptionCaught() 3017 void Dbg::PostException(mirror::Throwable* exception_object) { in PostException() argument 3023 Handle<mirror::Throwable> h_exception(handle_scope.NewHandle(exception_object)); in PostException()
|