Home
last modified time | relevance | path

Searched refs:throwable (Results 1 – 9 of 9) sorted by relevance

/art/test/ti-agent/
Dexceptions_helper.cc42 jobject throwable, in exceptionCB() argument
50 DCHECK(throwable != nullptr); in exceptionCB()
51 if (!jnienv->IsInstanceOf(throwable, data->exception_klass)) { in exceptionCB()
65 throwable, in exceptionCB()
83 jobject throwable) { in exceptionCatchCB() argument
89 if (!jnienv->IsSameObject(data->exception_klass, jnienv->GetObjectClass(throwable))) { in exceptionCatchCB()
101 throwable); in exceptionCatchCB()
/art/runtime/
Dmethod_handles_test.cc34 bool IsClassCastException(ObjPtr<mirror::Throwable> throwable) in IsClassCastException() argument
36 return throwable->GetClass()->DescriptorEquals("Ljava/lang/ClassCastException;"); in IsClassCastException()
39 bool IsNullPointerException(ObjPtr<mirror::Throwable> throwable) in IsNullPointerException() argument
41 return throwable->GetClass()->DescriptorEquals("Ljava/lang/NullPointerException;"); in IsNullPointerException()
44 bool IsWrongMethodTypeException(ObjPtr<mirror::Throwable> throwable) in IsWrongMethodTypeException() argument
46 return throwable->GetClass()->DescriptorEquals("Ljava/lang/invoke/WrongMethodTypeException;"); in IsWrongMethodTypeException()
Dinstrumentation_test.cc138 Handle<mirror::Throwable> throwable ATTRIBUTE_UNUSED) in ExceptionHandled()
DAndroid.bp177 "mirror/throwable.cc",
Druntime.cc1178 ObjPtr<mirror::Class> throwable = GetClassRoot<mirror::Throwable>(class_linker); in CreatePreAllocatedException() local
1180 throwable->FindDeclaredInstanceField("detailMessage", "Ljava/lang/String;"); in CreatePreAllocatedException()
Dclass_linker.cc2954 ALWAYS_INLINE bool MatchesDexFileCaughtExceptions(ObjPtr<mirror::Throwable> throwable, in MatchesDexFileCaughtExceptions() argument
2959 throwable->InstanceOf(GetClassRoot(ClassRoot::kJavaLangClassNotFoundException, in MatchesDexFileCaughtExceptions()
2963 throwable->InstanceOf(Runtime::Current()->GetPreAllocatedNoClassDefFoundError()->GetClass()); in MatchesDexFileCaughtExceptions()
/art/test/141-class-unload/src/
DMain.java119 Throwable throwable = (Throwable) stackTraceMethod.invoke(klass); in testStackTrace() local
124 System.out.println("class null " + isNull + " " + throwable.getMessage()); in testStackTrace()
/art/tools/tracefast-plugin/
Dtracefast.cc108 art::Handle<art::mirror::Throwable> throwable ATTRIBUTE_UNUSED) in ExceptionHandled()
/art/runtime/mirror/
Dclass.cc154 Handle<Throwable> throwable(hs.NewHandle(self->GetException())); in EnsureExtDataPresent() local
184 if (throwable != nullptr) { in EnsureExtDataPresent()
185 self->SetException(throwable.Get()); in EnsureExtDataPresent()