Searched refs:exception_class_descriptor (Results 1 – 3 of 3) sorted by relevance
| /art/runtime/ |
| D | thread.h | 504 void ThrowNewException(const char* exception_class_descriptor, const char* msg) 509 void ThrowNewWrappedException(const char* exception_class_descriptor, const char* msg) 512 void ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...) 516 void ThrowNewExceptionV(const char* exception_class_descriptor, const char* fmt, va_list ap)
|
| D | thread.cc | 3161 void Thread::ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...) { in ThrowNewExceptionF() argument 3164 ThrowNewExceptionV(exception_class_descriptor, fmt, args); in ThrowNewExceptionF() 3168 void Thread::ThrowNewExceptionV(const char* exception_class_descriptor, in ThrowNewExceptionV() argument 3172 ThrowNewException(exception_class_descriptor, msg.c_str()); in ThrowNewExceptionV() 3175 void Thread::ThrowNewException(const char* exception_class_descriptor, in ThrowNewException() argument 3179 ThrowNewWrappedException(exception_class_descriptor, msg); in ThrowNewException() 3190 void Thread::ThrowNewWrappedException(const char* exception_class_descriptor, in ThrowNewWrappedException() argument 3201 hs.NewHandle(cl->FindClass(this, exception_class_descriptor, class_loader))); in ThrowNewWrappedException() 3204 LOG(ERROR) << "No exception class " << PrettyDescriptor(exception_class_descriptor); in ThrowNewWrappedException() 3251 << PrettyDescriptor(exception_class_descriptor); in ThrowNewWrappedException()
|
| D | runtime.cc | 1094 const char* exception_class_descriptor, in CreatePreAllocatedException() argument 1100 ObjPtr<mirror::Class> klass = class_linker->FindSystemClass(self, exception_class_descriptor); in CreatePreAllocatedException()
|