Searched refs:exception_class_descriptor (Results 1 – 3 of 3) sorted by relevance
/art/runtime/ |
D | thread.h | 533 void ThrowNewException(const char* exception_class_descriptor, const char* msg) 538 void ThrowNewWrappedException(const char* exception_class_descriptor, const char* msg) 541 void ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...) 545 void ThrowNewExceptionV(const char* exception_class_descriptor, const char* fmt, va_list ap)
|
D | thread.cc | 3231 void Thread::ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...) { in ThrowNewExceptionF() argument 3234 ThrowNewExceptionV(exception_class_descriptor, fmt, args); in ThrowNewExceptionF() 3238 void Thread::ThrowNewExceptionV(const char* exception_class_descriptor, in ThrowNewExceptionV() argument 3242 ThrowNewException(exception_class_descriptor, msg.c_str()); in ThrowNewExceptionV() 3245 void Thread::ThrowNewException(const char* exception_class_descriptor, in ThrowNewException() argument 3249 ThrowNewWrappedException(exception_class_descriptor, msg); in ThrowNewException() 3260 void Thread::ThrowNewWrappedException(const char* exception_class_descriptor, in ThrowNewWrappedException() argument 3281 hs.NewHandle(cl->FindClass(this, exception_class_descriptor, class_loader))); in ThrowNewWrappedException() 3284 LOG(ERROR) << "No exception class " << PrettyDescriptor(exception_class_descriptor); in ThrowNewWrappedException() 3331 << PrettyDescriptor(exception_class_descriptor); in ThrowNewWrappedException()
|
D | runtime.cc | 1251 const char* exception_class_descriptor, in CreatePreAllocatedException() argument 1257 ObjPtr<mirror::Class> klass = class_linker->FindSystemClass(self, exception_class_descriptor); in CreatePreAllocatedException()
|