Searched refs:exception_class_descriptor (Results 1 – 3 of 3) sorted by relevance
/art/runtime/ |
D | thread.cc | 3551 void Thread::ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...) { in ThrowNewExceptionF() argument 3554 ThrowNewExceptionV(exception_class_descriptor, fmt, args); in ThrowNewExceptionF() 3558 void Thread::ThrowNewExceptionV(const char* exception_class_descriptor, in ThrowNewExceptionV() argument 3562 ThrowNewException(exception_class_descriptor, msg.c_str()); in ThrowNewExceptionV() 3565 void Thread::ThrowNewException(const char* exception_class_descriptor, in ThrowNewException() argument 3569 ThrowNewWrappedException(exception_class_descriptor, msg); in ThrowNewException() 3580 void Thread::ThrowNewWrappedException(const char* exception_class_descriptor, in ThrowNewWrappedException() argument 3601 hs.NewHandle(cl->FindClass(this, exception_class_descriptor, class_loader))); in ThrowNewWrappedException() 3604 LOG(ERROR) << "No exception class " << PrettyDescriptor(exception_class_descriptor); in ThrowNewWrappedException() 3651 << PrettyDescriptor(exception_class_descriptor); in ThrowNewWrappedException()
|
D | thread.h | 726 void ThrowNewException(const char* exception_class_descriptor, const char* msg) 731 void ThrowNewWrappedException(const char* exception_class_descriptor, const char* msg) 734 void ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...) 738 void ThrowNewExceptionV(const char* exception_class_descriptor, const char* fmt, va_list ap)
|
D | runtime.cc | 1421 const char* exception_class_descriptor, in CreatePreAllocatedException() argument 1427 ObjPtr<mirror::Class> klass = class_linker->FindSystemClass(self, exception_class_descriptor); in CreatePreAllocatedException()
|