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

<<1112131415

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DJDIEventSource.java8 * particular file as subject to the "Classpath" exception as provided
147 public void exception(ExceptionEventSet e) { method in class:JDIEventSource.FirstListener
/openjdk7/jdk/src/macosx/bundle/appbundler/src/com/oracle/appbundler/
H A DAppBundlerTask.java9 * particular file as subject to the "Classpath" exception as provided
315 } catch (IOException exception) {
316 throw new BuildException(exception);
411 } catch (XMLStreamException exception) {
412 throw new IOException(exception);
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DQuartzSurfaceData.h8 * particular file as subject to the "Classpath" exception as provided
142 [JNFException throwToJava:env exception:localException]; \
/openjdk7/hotspot/src/share/vm/runtime/
H A Djava.hpp51 extern void vm_exit_during_initialization(Handle exception);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLPortImpl.java8 * particular file as subject to the "Classpath" exception as provided
33 import com.sun.xml.internal.ws.util.exception.LocatableWebServiceException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/exception/
H A DJAXWSExceptionBase.java8 * particular file as subject to the "Classpath" exception as provided
26 package com.sun.xml.internal.ws.util.exception;
70 * Creates a new exception that wraps the specified exception.
149 * Gets the default resource bundle name for this kind of exception.
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DWakeup.java52 volatile Exception exception = null; field in class:Wakeup.Sleeper
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DParser.java8 * particular file as subject to the "Classpath" exception as provided
150 catch (ParseException exception) // Match MIGHT throw this
154 catch (EOFException exception) // skipToSemicolon MIGHT throw this
509 catch (ParseException exception)
628 // not be called now, since a semantic exception ocurred, but
876 catch (ParseException exception)
1229 } catch (Exception exception) {
1231 // exception, then an error occurred and was reported
1289 // parser will fail when instantiating a Double with an exception.
1326 catch (EvaluationException exception)
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/legacy/connection/
H A DREADME.txt8 * particular file as subject to the "Classpath" exception as provided
42 exception to tell the ORB to ask it for type/host/port info again.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/
H A DOperation.java8 * particular file as subject to the "Classpath" exception as provided
239 public void putFault(String faultName, JClass exception){ argument
240 faultClassMap.put(faultName, exception);
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DEventSetImpl.java8 * particular file as subject to the "Classpath" exception as provided
406 private ObjectReference exception; field in class:EventSetImpl.ExceptionEventImpl
411 this.exception = evt.exception;
415 public ObjectReference exception() { method in class:EventSetImpl.ExceptionEventImpl
416 return exception;
593 // an exception so that clients can't modify the EventSet
/openjdk7/jdk/src/share/back/
H A DeventHelper.c8 * particular file as subject to the "Classpath" exception as provided
336 writeCodeLocation(out, evinfo->u.exception.catch_clazz,
337 evinfo->u.exception.catch_method, evinfo->u.exception.catch_location);
822 if ( evinfo->u.exception.catch_clazz != NULL ) {
823 pclazz = &(evinfo->u.exception.catch_clazz);
869 if ( evinfo->u.exception.catch_clazz != NULL ) {
870 tossGlobalRef(env, &(evinfo->u.exception.catch_clazz));
H A DeventHandler.c8 * particular file as subject to the "Classpath" exception as provided
554 /* We want to preserve any current exception that might get
558 * generate an exception.
696 /* Always restore any exception that was set beforehand. If
697 * there is a pending async exception, StopThread will be
700 * exception might immediately overwrite the currentException,
798 /* JDWP does not return these events when popped due to an exception. */
821 jlocation location, jobject exception,
835 info.object = exception;
836 info.u.exception
819 cbException(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location, jobject exception, jmethodID catch_method, jlocation catch_location) argument
988 cbExceptionCatch(jvmtiEnv *jvmti_env, JNIEnv *env, jthread thread, jmethodID method, jlocation location, jobject exception) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DWrapperBeanGenerator.java8 * particular file as subject to the "Classpath" exception as provided
51 * Runtime Wrapper and exception bean generator implementation.
52 * It uses ASM to generate request, response and exception beans.
328 static Class createExceptionBean(String className, Class exception, String typeNS, String elemName, String elemNS, ClassLoader cl) { argument
330 Collection<Field> fields = RUNTIME_GENERATOR.collectExceptionBeanMembers(exception);
335 exception.getSimpleName(), typeNS,
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/protocol/
H A DCorbaMessageMediator.java8 * particular file as subject to the "Classpath" exception as provided
99 public void setDIIException(Exception exception); argument
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.cpp215 ExceptionCache::ExceptionCache(Handle exception, address pc, address handler) { argument
217 assert(exception.not_null(), "Must be non null");
221 _exception_type = exception->klass();
228 address ExceptionCache::match(Handle exception, address pc) { argument
230 assert(exception.not_null(),"Must be non null");
231 if (exception->klass() == exception_type()) {
239 bool ExceptionCache::match_exception_with_space(Handle exception) { argument
240 assert(exception.not_null(),"Must be non null");
241 if (exception->klass() == exception_type() && count() < cache_size) {
270 // private method for handling exception cach
273 exception_cache_entry_for_exception(Handle exception) argument
404 handler_for_exception_and_pc(Handle exception, address pc) argument
420 add_handler_for_exception_and_pc(Handle exception, address pc, address handler) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DEventRequestSpec.java8 * particular file as subject to the "Classpath" exception as provided
113 if (prs.matches(er.exception())) {
212 // A runtime exception that we were not expecting
/openjdk7/jdk/src/share/classes/com/sun/beans/finder/
H A DMethodFinder.java8 * particular file as subject to the "Classpath" exception as provided
138 catch (NoSuchMethodException exception) {
/openjdk7/jdk/test/java/awt/regtesthelpers/
H A DUtil.java201 throw new RuntimeException("Error: unexpected exception caught!", se);
203 throw new RuntimeException("Error: unexpected exception caught!", nsfe);
243 throw new RuntimeException("Error: unexpected exception caught!", e);
268 throw new RuntimeException("Error: unexpected exception caught!", e);
285 throw new RuntimeException("Error: unexpected exception caught!", e);
619 final Exception[] exception = new Exception[1];
628 exception[0] = e;
633 if (exception[0] != null) {
634 throw exception[0];
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DPendingFuture.java8 * particular file as subject to the "Classpath" exception as provided
45 // true if result (or exception) is available
131 * Sets the result, or a no-op if the result or exception is already set.
147 * Sets the result, or a no-op if the result or exception is already set.
207 Throwable exception() { method in class:PendingFuture
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/livejvm/
H A DServiceabilityAgentJVMDIModule.java95 exception. */
193 JNIHandleAccessor exception = lookupJNIHandle("saExceptionException");
198 (int) location.getValue(), exception.getValue(),
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiExport.hpp239 static void post_exception_throw (JavaThread *thread, methodOop method, address location, oop exception);
240 static void notice_unwind_due_to_exception (JavaThread *thread, methodOop method, address location, oop exception, bool in_handler_frame);
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsaproc.cpp798 jthrowable exception = 0; local
806 exception = env->ExceptionOccurred();
807 if (exception) {
810 env->Throw(exception);
821 exception = env->ExceptionOccurred();
822 if (exception) {
826 env->Throw(exception);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DJAXBContextImpl.java8 * particular file as subject to the "Classpath" exception as provided
564 * if true, the failure to look up will throw an exception.
597 * if true, the failure to look up will throw an exception.
814 public void error(SAXParseException exception) {
815 e[0] = exception;
818 public void fatalError(SAXParseException exception) {
819 e[0] = exception;
822 public void warning(SAXParseException exception) {
823 w[0] = exception;
826 public void info(SAXParseException exception) {}
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DURL.java8 * particular file as subject to the "Classpath" exception as provided
291 * @exception MalformedURLException if an unknown protocol is specified.
319 * @exception MalformedURLException if an unknown protocol is specified.
353 * @exception MalformedURLException if an unknown protocol is specified.
354 * @exception SecurityException
426 * @exception MalformedURLException if no protocol is specified, or an
473 * @exception MalformedURLException if no protocol is specified, or an
493 * @exception MalformedURLException if no protocol is specified, or an
495 * @exception SecurityException
619 MalformedURLException exception
[all...]

Completed in 103 milliseconds

<<1112131415