Searched defs:exc (Results 1 - 25 of 38) sorted by relevance

12

/openjdk7/jdk/test/java/security/Security/ClassLoaderDeadlock/
H A DDeadlock.java31 private volatile Exception exc; field in class:Deadlock
39 this.exc = e;
54 if (d.exc != null) {
55 throw d.exc;
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DExceptionList.java70 * @param exc the <code>TypeCode</code> object to be added
73 public abstract void add(TypeCode exc); argument
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DCompletionHandler.java60 * @param exc
65 void failed(Throwable exc, A attachment); argument
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Dk_standard.c96 struct exception exc; local
107 exc.arg1 = x;
108 exc.arg2 = y;
112 exc.type = DOMAIN;
113 exc.name = "acos";
114 exc.retval = zero;
117 else if (!matherr(&exc)) {
126 exc.type = DOMAIN;
127 exc.name = "asin";
128 exc
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DEnvironmentImpl.java51 public void exception(Exception exc) argument
53 _exc = exc;
H A DServerRequestImpl.java148 public void set_exception(Any exc) argument
152 if ( exc == null )
158 TCKind kind = exc.type().kind();
162 _exception = exc;
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DFileVisitor.java145 * @param exc
153 FileVisitResult visitFileFailed(T file, IOException exc) argument
165 * @param exc
175 FileVisitResult postVisitDirectory(T dir, IOException exc) argument
H A DSimpleFileVisitor.java87 public FileVisitResult visitFileFailed(T file, IOException exc) argument
91 throw exc;
104 public FileVisitResult postVisitDirectory(T dir, IOException exc) argument
108 if (exc != null)
109 throw exc;
/openjdk7/jdk/src/share/classes/javax/naming/event/
H A DNamingExceptionEvent.java58 * @param exc The non-null <tt>NamingException</tt> that was thrown.
61 public NamingExceptionEvent(EventContext source, NamingException exc) { argument
63 exception = exc;
/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DFileTreeCreatorVC10.java126 public FileVisitResult postVisitDirectory(Path dir, IOException exc) { argument
133 public FileVisitResult visitFileFailed(Path file, IOException exc) { argument
H A DFileTreeCreatorVC7.java140 public FileVisitResult postVisitDirectory(Path dir, IOException exc) { argument
149 public FileVisitResult visitFileFailed(Path file, IOException exc) { argument
/openjdk7/jdk/test/demo/zipfs/
H A DBasic.java146 public FileVisitResult postVisitDirectory(Path dir, IOException exc) argument
149 if (exc != null)
150 super.postVisitDirectory(dir, exc);
/openjdk7/jdk/test/java/net/DatagramSocketImpl/
H A DCheckDiscard.java91 Exception exc = null; field in class:CheckDiscard.Sender
105 exc = e;
109 return exc;
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DCompletedFuture.java40 private final Throwable exc; field in class:CompletedFuture
42 private CompletedFuture(V result, Throwable exc) { argument
44 this.exc = exc;
51 static <V> CompletedFuture<V> withFailure(Throwable exc) { argument
53 if (!(exc instanceof IOException) && !(exc instanceof SecurityException))
54 exc = new IOException(exc);
55 return new CompletedFuture<V>(null, exc);
58 withResult(V result, Throwable exc) argument
[all...]
H A DInvoker.java123 Throwable exc)
125 if (exc == null) {
128 handler.failed(exc, attachment);
142 Throwable exc)
145 Invoker.invokeUnchecked(handler, attachment, result, exc);
157 Throwable exc)
173 invokeDirect(thisGroupAndInvokeCount, handler, attachment, result, exc);
176 invokeIndirectly(channel, handler, attachment, result, exc);
182 handler, attachment, result, exc);
197 final Throwable exc)
120 invokeUnchecked(CompletionHandler<V,? super A> handler, A attachment, V value, Throwable exc) argument
138 invokeDirect(GroupAndInvokeCount myGroupAndInvokeCount, CompletionHandler<V,? super A> handler, A attachment, V result, Throwable exc) argument
153 invoke(AsynchronousChannel channel, CompletionHandler<V,? super A> handler, A attachment, V result, Throwable exc) argument
193 invokeIndirectly(AsynchronousChannel channel, final CompletionHandler<V,? super A> handler, final A attachment, final V result, final Throwable exc) argument
217 invokeIndirectly(final CompletionHandler<V,? super A> handler, final A attachment, final V value, final Throwable exc, Executor executor) argument
[all...]
H A DPendingFuture.java48 private volatile Throwable exc; field in class:PendingFuture
155 exc = x;
182 if (exc != null) {
183 if (exc == CANCELLED)
185 throw new ExecutionException(exc);
199 if (exc != null) {
200 if (exc == CANCELLED)
202 throw new ExecutionException(exc);
208 return (exc != CANCELLED) ? exc
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciExceptionHandler.hpp75 bool catches(ciInstanceKlass *exc) { argument
76 return is_catch_all() || exc->is_subtype_of(catch_klass());
/openjdk7/jdk/test/java/nio/channels/AsynchronousFileChannel/
H A DLotsOfWrites.java112 public void failed(Throwable exc, ByteBuffer buf) { argument
113 exc.printStackTrace();
/openjdk7/jdk/src/share/sample/nio/file/
H A DChmod.java308 public FileVisitResult postVisitDirectory(Path dir, IOException exc) { argument
309 if (exc != null)
310 System.err.println("WARNING: " + exc);
315 public FileVisitResult visitFileFailed(Path file, IOException exc) { argument
316 System.err.println("WARNING: " + exc);
H A DCopy.java123 public FileVisitResult postVisitDirectory(Path dir, IOException exc) { argument
125 if (exc == null && preserve) {
138 public FileVisitResult visitFileFailed(Path file, IOException exc) { argument
139 if (exc instanceof FileSystemLoopException) {
142 System.err.format("Unable to copy: %s: %s%n", file, exc);
/openjdk7/jdk/test/java/lang/Runtime/exec/
H A DStreamsSurviveDestroy.java43 Exception exc = null; field in class:StreamsSurviveDestroy.Copier
80 exc = new Exception(name
84 exc = x;
95 if (!acceptException && exc != null)
96 throw new Exception(name + ": Exception thrown", exc);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DEventRequestSpecList.java180 void notifyError(EventRequestSpec spec, Exception exc) { argument
182 SpecErrorEvent evt = new SpecErrorEvent(spec, exc);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DToSAXHandler.java369 public void fatalError(SAXParseException exc) throws SAXException { argument
370 super.fatalError(exc);
375 ((ErrorHandler)m_saxHandler).fatalError(exc);
382 public void error(SAXParseException exc) throws SAXException { argument
383 super.error(exc);
386 ((ErrorHandler)m_saxHandler).error(exc);
393 public void warning(SAXParseException exc) throws SAXException { argument
394 super.warning(exc);
397 ((ErrorHandler)m_saxHandler).warning(exc);
/openjdk7/jdk/src/share/back/
H A Dinvoker.c675 jobject exc; local
685 exc = NULL;
721 exc = request->exception;
735 (void)outStream_writeObjectTag(env, &out, exc);
736 (void)outStream_writeObjectRef(env, &out, exc);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Object.cpp133 jthrowable exc = safe_ExceptionOccurred(env); local
134 if (exc) {
135 env->DeleteLocalRef(exc);
168 jthrowable exc = safe_ExceptionOccurred(env); local
169 if (exc) {
170 env->DeleteLocalRef(exc);

Completed in 200 milliseconds

12