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

/openjdk7/hotspot/src/share/vm/utilities/
H A Dexceptions.cpp78 bool Exceptions::special_exception(Thread* thread, const char* file, int line, Handle h_exception) { argument
81 vm_exit_during_initialization(h_exception);
90 if (h_exception()->klass() == SystemDictionary::StackOverflowError_klass()) {
91 instanceKlass* ik = instanceKlass::cast(h_exception->klass());
134 Handle h_exception = Handle(thread, exception); local
135 _throw(thread, file, line, h_exception);
138 void Exceptions::_throw(Thread* thread, const char* file, int line, Handle h_exception, const char* message) { argument
139 assert(h_exception() != NULL, "exception should not be NULL");
147 h_exception->print_value_string(),
149 (address)h_exception(), fil
173 Handle h_exception = new_exception(thread, name, message, h_cause, h_loader, h_protection_domain); local
257 Handle h_exception; local
298 Handle h_exception = new_exception(thread, name, signature, args, h_loader, h_protection_domain); local
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.cpp3725 Handle h_exception = variable
3730 THROW_HANDLE_0(h_exception); variable
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp584 void SharedRuntime::throw_and_post_jvmti_exception(JavaThread *thread, Handle h_exception) { argument
589 JvmtiExport::post_exception_throw(thread, method(), bcp, h_exception());
591 Exceptions::_throw(thread, __FILE__, __LINE__, h_exception);
595 Handle h_exception = Exceptions::new_exception(thread, name, message); local
596 throw_and_post_jvmti_exception(thread, h_exception);

Completed in 55 milliseconds