Searched refs:exception_class_descriptor (Results 1 – 2 of 2) sorted by relevance
/art/runtime/ |
D | thread.h | 416 void ThrowNewException(const char* exception_class_descriptor, const char* msg) 421 void ThrowNewWrappedException(const char* exception_class_descriptor, const char* msg) 424 void ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...) 428 void ThrowNewExceptionV(const char* exception_class_descriptor, const char* fmt, va_list ap)
|
D | thread.cc | 2244 void Thread::ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...) { in ThrowNewExceptionF() argument 2247 ThrowNewExceptionV(exception_class_descriptor, fmt, args); in ThrowNewExceptionF() 2251 void Thread::ThrowNewExceptionV(const char* exception_class_descriptor, in ThrowNewExceptionV() argument 2255 ThrowNewException(exception_class_descriptor, msg.c_str()); in ThrowNewExceptionV() 2258 void Thread::ThrowNewException(const char* exception_class_descriptor, in ThrowNewException() argument 2262 ThrowNewWrappedException(exception_class_descriptor, msg); in ThrowNewException() 2273 void Thread::ThrowNewWrappedException(const char* exception_class_descriptor, in ThrowNewWrappedException() argument 2284 hs.NewHandle(cl->FindClass(this, exception_class_descriptor, class_loader))); in ThrowNewWrappedException() 2287 LOG(ERROR) << "No exception class " << PrettyDescriptor(exception_class_descriptor); in ThrowNewWrappedException() 2333 << PrettyDescriptor(exception_class_descriptor); in ThrowNewWrappedException()
|