Home
last modified time | relevance | path

Searched refs:exception_class_descriptor (Results 1 – 3 of 3) sorted by relevance

/art/runtime/
Dthread.h527 void ThrowNewException(const char* exception_class_descriptor, const char* msg)
532 void ThrowNewWrappedException(const char* exception_class_descriptor, const char* msg)
535 void ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...)
539 void ThrowNewExceptionV(const char* exception_class_descriptor, const char* fmt, va_list ap)
Dthread.cc3161 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()
Druntime.cc1162 const char* exception_class_descriptor, in CreatePreAllocatedException() argument
1168 ObjPtr<mirror::Class> klass = class_linker->FindSystemClass(self, exception_class_descriptor); in CreatePreAllocatedException()