Searched refs:exception (Results 351 - 372 of 372) sorted by relevance

<<1112131415

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/
H A DCorbaMessageMediatorImpl.java8 * particular file as subject to the "Classpath" exception as provided
393 // exception (e.g., non-serializable object). Only
444 // Find the typecode for the exception
448 // Since we dont have the actual user exception
462 // must be a truly unknown exception
466 public void setDIIException(Exception exception) argument
468 diiRequest.env().exception(exception);
882 // Mask the exception from thread.;
903 // Mask the exception fro
[all...]
/openjdk7/hotspot/agent/test/jdi/
H A DTestScaffold.java49 * catch it and output a msg if an exception occurs in the
55 * If we do catch an uncaught exception, we set this true
160 * unexpected exception. The unexpected exception will be handled in
163 * If a testcase does not want an uncaught exception to cause a
413 * keeps running until a VMDisconnectedEvent occurs or some exception
465 event.exception().referenceType().name() +
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/
H A DDeploymentDescriptorParser.java8 * particular file as subject to the "Classpath" exception as provided
46 import com.sun.xml.internal.ws.util.exception.LocatableWebServiceException;
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Dk_standard.c9 * particular file as subject to the "Classpath" exception as provided
42 * Standard conformance (non-IEEE) on exception cases.
96 struct exception exc;
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.cpp483 Handle exception(thread, JNIHandles::resolve_non_null(receiver));
484 java_lang_Throwable::fill_in_stack_trace(exception);
491 oop exception = JNIHandles::resolve_non_null(receiver); variable
493 java_lang_Throwable::print_stack_trace(exception, stream);
499 oop exception = JNIHandles::resolve(throwable); variable
500 return java_lang_Throwable::get_stack_trace_depth(exception, THREAD);
507 oop exception = JNIHandles::resolve(throwable); variable
508 oop element = java_lang_Throwable::get_stack_trace_element(exception, index, CHECK_NULL);
753 throwError ? "error" : "exception");
1240 // Throw a java.security.PrivilegedActionException(Exception e) exception
[all...]
H A DjvmtiEnv.cpp904 JvmtiEnv::StopThread(JavaThread* java_thread, jobject exception) { argument
905 oop e = JNIHandles::resolve_external_guard(exception);
H A Djvm.h253 JVM_StopThread(JNIEnv *env, jobject thread, jobject exception);
790 * A structure used to a capture exception table entry in a Java method.
800 * Returns the exception table entry at entry_index of a given method.
811 * Returns the length of the exception table of a given method.
H A Djni.cpp748 // JNI functions only transform a pending async exception to a synchronous
749 // exception in ExceptionOccurred and ExceptionCheck calls, since
750 // delivering an async exception in other places won't change the native
752 // JNI functions with a pending exception. Async exception is also checked
754 // false but deliver the async exception at the very end during
771 oop exception = thread->pending_exception(); variable
772 jthrowable ret = (jthrowable) JNIHandles::make_local(env, exception);
812 // If an exception is thrown in the call it gets thrown away. Not much
814 // for the exception
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_init.c1668 jobject exception)
1673 event_exception_catch(env, thread, method, location, exception);
1666 cbExceptionCatch(jvmtiEnv *jvmti, JNIEnv* env, jthread thread, jmethodID method, jlocation location, jobject exception) argument
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dinterp_masm_sparc.cpp825 // These are used to do a test and full jump to exception-throwing code.
921 // convention: move aberrant index into G3_scratch for exception message
1005 // Entry already unlocked, need to throw exception
1015 // Entry already unlocked need to throw an exception
1037 { Label loop, exception, entry, restart; local
1060 // Entry is still locked, need to throw exception
1061 bind(exception);
1077 brx(Assembler::notEqual, false, pn, exception);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.hpp301 ValueStack* _exception_state; // Copy of state for exception handling
302 XHandlers* _exception_handlers; // Flat list of exception handlers covering this instruction
808 pin(); // instruction with side effect (null exception or range check throwing)
1541 BlockList _exception_handlers; // the exception handlers potentially invoked by this block
1543 int _exception_handler_pco; // if this block is the start of an exception handler,
1674 // exception handlers potentially invoked by this block
1680 // states of the instructions that have an edge to this exception handler
2022 Throw(Value exception, ValueStack* state_before) : BlockEnd(illegalType, state_before, true), _exception(exception) {
2027 Value exception() cons
[all...]
H A Dc1_InstructionPrinter.cpp602 // print exception handlers
776 print_value(x->exception());
794 output()->print("incoming exception");
H A Dc1_GraphBuilder.cpp135 // generate exception entry blocks
183 // Draws edges from a block to its exception handlers
195 // add each exception handler only once
368 // exception edges may look like loops but don't mark them as such
702 // subroutine, including those for exception handlers in the scope
703 // of the method containing the jsr (because those exception
826 // clone all the exception handlers from the scope
1874 // do not have exception handlers in the containing method, and are
2066 // the Throw (i.e., exception oop is still on TOS)
2147 // set up exception handler
3595 Value exception = append_with_bci(new ExceptionObject(), SynchronizationEntryBCI); local
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dcallnode.cpp186 Node* exception
193 init_req(TypeFunc::Parms , exception);
215 if (i == TypeFunc::Parms) st->print("exception");
773 // and the exception object may not exist if an exception handler
774 // swallows the exception but all the other must exist and be found.
H A Dcallnode.hpp135 // Rethrow of exception at call site. Ends a procedure before rethrowing;
140 RethrowNode( Node *cntrl, Node *i_o, Node *memory, Node *frameptr, Node *ret_adr, Node *exception );
736 // those on the exception return path.
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTransformerImpl.java491 catch (Exception exception) {
492 // URI exception which means nothing can be done so OK to ignore
1329 * exception.
1357 * exception.
1385 * exception.
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMConfigurationImpl.java345 } catch (Exception exception){
384 * parsing early, it should throw an exception.
389 * @exception XNIException Any XNI exception, possibly wrapping
390 * another exception.
391 * @exception IOException An IO exception from the parser, possibly
482 * @exception java.lang.NullPointerException If the handler
513 * @exception com.sun.org.apache.xerces.internal.xni.parser.XMLConfigurationException If the
543 * @exception XNIExceptio
[all...]
/openjdk7/jdk/src/share/javavm/export/
H A Djvm.h8 * particular file as subject to the "Classpath" exception as provided
231 JVM_StopThread(JNIEnv *env, jobject thread, jobject exception);
745 * A structure used to a capture exception table entry in a Java method.
755 * Returns the exception table entry at entry_index of a given method.
766 * Returns the length of the exception table of a given method.
/openjdk7/jdk/test/java/lang/invoke/
H A DMethodHandlesTest.java8 * particular file as subject to the "Classpath" exception as provided
1196 throw new RuntimeException("failed to catch NPE exception"+(caughtEx == null ? " (caughtEx=null)" : ""), caughtEx);
1197 caughtEx = null; // nullify expected exception
1200 throw new RuntimeException("unexpected exception", caughtEx);
1386 throw new RuntimeException("failed to catch exception for negTest="+negTest);
1387 // test the kind of exception
1396 caughtEx = null; // nullify expected exception
1400 throw new RuntimeException("unexpected exception", caughtEx);
2277 Object throwOrReturn(Object normal, T exception) throws T { argument
2278 if (exception !
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DBugSpot.java1522 showMessageDialog(exev.exception().getKlass().getName().asString() +
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DCommands.java8 * particular file as subject to the "Classpath" exception as provided
71 MessageOutput.println("Internal exception during operation:",
117 ie.exception().referenceType().name());
702 MessageOutput.println("No exception object specified.");
712 MessageOutput.println("Invalid exception object");
812 MessageOutput.println("Usage: catch exception");
828 MessageOutput.println("Usage: ignore exception");
1494 MessageOutput.println("I/O exception occurred:", exc.toString());
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp78 # include <exception>
1482 VMError err("An uncaught C++ exception");
4587 // able to use structured exception handling (thread-local exception filters) on, e.g., Win32.
4602 // a serious error if it tried to handle an exception (such as a null check
4670 // It's more reasonable to let jvm treat it as an unexpected exception

Completed in 169 milliseconds

<<1112131415