Searched defs:exception_class_descriptor (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Dthread.cc2966 void Thread::ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...) { argument
2969 ThrowNewExceptionV(exception_class_descriptor, fmt, args);
2973 void Thread::ThrowNewExceptionV(const char* exception_class_descriptor, argument
2977 ThrowNewException(exception_class_descriptor, msg.c_str());
2980 void Thread::ThrowNewException(const char* exception_class_descriptor, argument
2984 ThrowNewWrappedException(exception_class_descriptor, msg);
2995 void Thread::ThrowNewWrappedException(const char* exception_class_descriptor, argument
3006 hs.NewHandle(cl->FindClass(this, exception_class_descriptor, class_loader)));
3009 LOG(ERROR) << "No exception class " << PrettyDescriptor(exception_class_descriptor);
3055 << PrettyDescriptor(exception_class_descriptor);
[all...]

Completed in 354 milliseconds