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

/art/runtime/
H A Dthread.cc2248 void Thread::ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...) { argument
2251 ThrowNewExceptionV(exception_class_descriptor, fmt, args);
2255 void Thread::ThrowNewExceptionV(const char* exception_class_descriptor, argument
2259 ThrowNewException(exception_class_descriptor, msg.c_str());
2262 void Thread::ThrowNewException(const char* exception_class_descriptor, argument
2266 ThrowNewWrappedException(exception_class_descriptor, msg);
2277 void Thread::ThrowNewWrappedException(const char* exception_class_descriptor, argument
2288 hs.NewHandle(cl->FindClass(this, exception_class_descriptor, class_loader)));
2291 LOG(ERROR) << "No exception class " << PrettyDescriptor(exception_class_descriptor);
2337 << PrettyDescriptor(exception_class_descriptor);
[all...]

Completed in 34 milliseconds