Searched refs:h_cause (Results 1 - 2 of 2) sorted by relevance

/openjdk10/hotspot/src/share/vm/utilities/
H A Dexceptions.cpp171 Handle h_cause(thread, NULL);
172 Handle h_exception = new_exception(thread, name, message, h_cause, h_loader, h_protection_domain);
176 void Exceptions::_throw_msg_cause(Thread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause, argument
181 Handle h_exception = new_exception(thread, name, message, h_cause, h_loader, h_protection_domain);
185 void Exceptions::_throw_cause(Thread* thread, const char* file, int line, Symbol* name, Handle h_cause, argument
188 if (special_exception(thread, file, line, h_cause)) return;
190 Handle h_exception = new_exception(thread, name, h_cause, h_loader, h_protection_domain);
207 void Exceptions::_throw_msg_cause(Thread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause) { argument
208 _throw_msg_cause(thread, file, line, name, message, h_cause, Handle(thread, NULL), Handle(thread, NULL));
213 void Exceptions::_throw_cause(Thread* thread, const char* file, int line, Symbol* name, Handle h_cause) { argument
295 new_exception(Thread *thread, Symbol* name, Symbol* signature, JavaCallArguments *args, Handle h_cause, Handle h_loader, Handle h_protection_domain) argument
326 new_exception(Thread* thread, Symbol* name, Handle h_cause, Handle h_loader, Handle h_protection_domain, ExceptionMsgToUtf8Mode to_utf8_safe) argument
343 new_exception(Thread* thread, Symbol* name, const char* message, Handle h_cause, Handle h_loader, Handle h_protection_domain, ExceptionMsgToUtf8Mode to_utf8_safe) argument
[all...]
H A Dexceptions.hpp126 static void _throw_msg_cause(Thread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause);
127 static void _throw_msg_cause(Thread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause,
130 static void _throw_cause(Thread* thread, const char* file, int line, Symbol* name, Handle h_cause);
131 static void _throw_cause(Thread* thread, const char* file, int line, Symbol* name, Handle h_cause,

Completed in 46 milliseconds