Searched refs:exception_class_descriptor (Results  1 – 3 of 3) sorted by relevance
| /art/runtime/ | 
| D | thread.h | 623   void ThrowNewException(const char* exception_class_descriptor, const char* msg) 628   void ThrowNewWrappedException(const char* exception_class_descriptor, const char* msg) 631   void ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...) 635   void ThrowNewExceptionV(const char* exception_class_descriptor, const char* fmt, va_list ap)
  | 
| D | thread.cc | 3511 void Thread::ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...) {  in ThrowNewExceptionF()  argument 3514   ThrowNewExceptionV(exception_class_descriptor, fmt, args);  in ThrowNewExceptionF() 3518 void Thread::ThrowNewExceptionV(const char* exception_class_descriptor,  in ThrowNewExceptionV()  argument 3522   ThrowNewException(exception_class_descriptor, msg.c_str());  in ThrowNewExceptionV() 3525 void Thread::ThrowNewException(const char* exception_class_descriptor,  in ThrowNewException()  argument 3529   ThrowNewWrappedException(exception_class_descriptor, msg);  in ThrowNewException() 3540 void Thread::ThrowNewWrappedException(const char* exception_class_descriptor,  in ThrowNewWrappedException()  argument 3561       hs.NewHandle(cl->FindClass(this, exception_class_descriptor, class_loader)));  in ThrowNewWrappedException() 3564     LOG(ERROR) << "No exception class " << PrettyDescriptor(exception_class_descriptor);  in ThrowNewWrappedException() 3611       << PrettyDescriptor(exception_class_descriptor);  in ThrowNewWrappedException()
  | 
| D | runtime.cc | 1317                                                const char* exception_class_descriptor,  in CreatePreAllocatedException()  argument 1323   ObjPtr<mirror::Class> klass = class_linker->FindSystemClass(self, exception_class_descriptor);  in CreatePreAllocatedException()
  |