Home
last modified time | relevance | path

Searched refs:exception_class_descriptor (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/art/runtime/
H A Dthread.cc3595 void Thread::ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...) { in ThrowNewExceptionF() argument
3598 ThrowNewExceptionV(exception_class_descriptor, fmt, args); in ThrowNewExceptionF()
3602 void Thread::ThrowNewExceptionV(const char* exception_class_descriptor, in ThrowNewExceptionV() argument
3606 ThrowNewException(exception_class_descriptor, msg.c_str()); in ThrowNewExceptionV()
3609 void Thread::ThrowNewException(const char* exception_class_descriptor, in ThrowNewException() argument
3613 ThrowNewWrappedException(exception_class_descriptor, msg); in ThrowNewException()
3624 void Thread::ThrowNewWrappedException(const char* exception_class_descriptor, in ThrowNewWrappedException() argument
3646 this, exception_class_descriptor, strlen(exception_class_descriptor), class_loader))); in ThrowNewWrappedException()
3649 LOG(ERROR) << "No exception class " << PrettyDescriptor(exception_class_descriptor); in ThrowNewWrappedException()
3696 << PrettyDescriptor(exception_class_descriptor); in ThrowNewWrappedException()
H A Dthread.h768 void ThrowNewException(const char* exception_class_descriptor, const char* msg)
773 void ThrowNewWrappedException(const char* exception_class_descriptor, const char* msg)
776 void ThrowNewExceptionF(const char* exception_class_descriptor, const char* fmt, ...)
780 void ThrowNewExceptionV(const char* exception_class_descriptor, const char* fmt, va_list ap)
H A Druntime.cc1419 const char* exception_class_descriptor, in CreatePreAllocatedException() argument
1425 ObjPtr<mirror::Class> klass = class_linker->FindSystemClass(self, exception_class_descriptor); in CreatePreAllocatedException()