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

/openjdk7/hotspot/src/share/vm/utilities/
H A Dexceptions.cpp172 Handle h_cause(thread, NULL);
173 Handle h_exception = new_exception(thread, name, message, h_cause, h_loader, h_protection_domain);
177 void Exceptions::_throw_msg_cause(Thread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause, argument
182 Handle h_exception = new_exception(thread, name, message, h_cause, h_loader, h_protection_domain);
186 void Exceptions::_throw_cause(Thread* thread, const char* file, int line, Symbol* name, Handle h_cause, argument
189 if (special_exception(thread, file, line, h_cause)) return;
191 Handle h_exception = new_exception(thread, name, h_cause, h_loader, h_protection_domain);
208 void Exceptions::_throw_msg_cause(Thread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause) { argument
209 _throw_msg_cause(thread, file, line, name, message, h_cause, Handle(thread, NULL), Handle(thread, NULL));
214 void Exceptions::_throw_cause(Thread* thread, const char* file, int line, Symbol* name, Handle h_cause) { argument
294 new_exception(Thread *thread, Symbol* name, Symbol* signature, JavaCallArguments *args, Handle h_cause, Handle h_loader, Handle h_protection_domain) argument
325 new_exception(Thread* thread, Symbol* name, Handle h_cause, Handle h_loader, Handle h_protection_domain, ExceptionMsgToUtf8Mode to_utf8_safe) argument
342 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.hpp120 static void _throw_msg_cause(Thread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause);
121 static void _throw_msg_cause(Thread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause,
124 static void _throw_cause(Thread* thread, const char* file, int line, Symbol* name, Handle h_cause);
125 static void _throw_cause(Thread* thread, const char* file, int line, Symbol* name, Handle h_cause,

Completed in 31 milliseconds