/openjdk7/jdk/test/java/security/Security/ClassLoaderDeadlock/ |
H A D | Deadlock.java | 31 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 D | ExceptionList.java | 70 * @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 D | CompletionHandler.java | 60 * @param exc 65 void failed(Throwable exc, A attachment); argument
|
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/ |
H A D | k_standard.c | 96 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 D | EnvironmentImpl.java | 51 public void exception(Exception exc) argument 53 _exc = exc;
|
H A D | ServerRequestImpl.java | 148 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 D | FileVisitor.java | 145 * @param exc 153 FileVisitResult visitFileFailed(T file, IOException exc) argument 165 * @param exc 175 FileVisitResult postVisitDirectory(T dir, IOException exc) argument
|
H A D | SimpleFileVisitor.java | 87 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 D | NamingExceptionEvent.java | 58 * @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 D | FileTreeCreatorVC10.java | 126 public FileVisitResult postVisitDirectory(Path dir, IOException exc) { argument 133 public FileVisitResult visitFileFailed(Path file, IOException exc) { argument
|
H A D | FileTreeCreatorVC7.java | 140 public FileVisitResult postVisitDirectory(Path dir, IOException exc) { argument 149 public FileVisitResult visitFileFailed(Path file, IOException exc) { argument
|
/openjdk7/jdk/test/demo/zipfs/ |
H A D | Basic.java | 146 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 D | CheckDiscard.java | 91 Exception exc = null; field in class:CheckDiscard.Sender 105 exc = e; 109 return exc;
|
/openjdk7/jdk/src/share/classes/sun/nio/ch/ |
H A D | CompletedFuture.java | 40 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 D | Invoker.java | 123 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 D | PendingFuture.java | 48 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 D | ciExceptionHandler.hpp | 75 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 D | LotsOfWrites.java | 112 public void failed(Throwable exc, ByteBuffer buf) { argument 113 exc.printStackTrace();
|
/openjdk7/jdk/src/share/sample/nio/file/ |
H A D | Chmod.java | 308 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 D | Copy.java | 123 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 D | StreamsSurviveDestroy.java | 43 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 D | EventRequestSpecList.java | 180 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 D | ToSAXHandler.java | 369 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 D | invoker.c | 675 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 D | awt_Object.cpp | 133 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);
|