Searched refs:cause (Results 201 - 225 of 298) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTMException.java81 * Returns the cause of this throwable or <code>null</code> if the
82 * cause is nonexistent or unknown. (The cause is the throwable that
93 * Initializes the <i>cause</i> of this throwable to the specified value.
94 * (The cause is the throwable that caused this throwable to get thrown.)
103 * @param cause the cause (which is saved for later retrieval by the
105 * permitted, and indicates that the cause is nonexistent or
108 * @throws IllegalArgumentException if <code>cause</code> is this
110 * be its own cause
116 initCause(Throwable cause) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DAbstractHeapGraphWriter.java352 // RuntimeException with origianal IOException as cause from the
357 Throwable cause = re.getCause();
358 if (cause != null && cause instanceof IOException) {
359 throw (IOException) cause;
/openjdk7/jdk/src/share/classes/java/util/
H A DResourceBundle.java508 private Throwable cause; field in class:ResourceBundle.CacheKey
609 clone.cause = null;
625 private void setCause(Throwable cause) { argument
626 if (this.cause == null) {
627 this.cause = cause;
629 // Override the cause if the previous one is
631 if (this.cause instanceof ClassNotFoundException) {
632 this.cause = cause;
1491 throwMissingResourceException(String baseName, Locale locale, Throwable cause) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcTrace.cpp49 void GCTracer::report_gc_start_impl(GCCause::Cause cause, jlong timestamp) { argument
54 _shared_gc_info.set_cause(cause);
58 void GCTracer::report_gc_start(GCCause::Cause cause, jlong timestamp) { argument
61 report_gc_start_impl(cause, timestamp);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DPlatformWindow.java123 public boolean rejectFocusRequest(CausedFocusEvent.Cause cause); argument
/openjdk7/jdk/src/share/classes/sun/tools/jcmd/
H A DJCmd.java101 Throwable cause = e.getCause();
102 if ((cause != null) && (cause.getMessage() != null)) {
103 System.err.println(cause.getMessage());
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DJstat.java76 Throwable cause = e.getCause();
77 if ((cause != null) && (cause.getMessage() != null)) {
78 System.err.println(cause.getMessage());
/openjdk7/jdk/test/javax/management/mxbean/
H A DExceptionDiagnosisTest.java191 Throwable cause = e.getCause();
192 if (cause instanceof Exception)
193 throw (Exception) cause;
195 throw (Error) cause;
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DPollingWatchService.java134 Throwable cause = pae.getCause();
135 if (cause != null && cause instanceof IOException)
136 throw (IOException)cause;
/openjdk7/jdk/test/tools/launcher/
H A DTestHelper.java341 IOException cause = null;
346 if (cause != null) {
354 System.err.println("Errors encountered: " + cause);
355 cause.printStackTrace();
359 if (cause != null) {
361 cause.addSuppressed(ioe);
363 cause = ioe;
370 if (cause != null) {
371 // cause should alway be non-null here
372 ie.addSuppressed(cause);
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DConnectorImpl.java195 Throwable cause = ite.getCause();
199 while (cause != null) {
201 if (isVMVersionMismatch(cause)) {
205 return loadVirtualMachineImplClass(getVMVersion(cause));
214 cause = cause.getCause();
/openjdk7/jdk/src/windows/classes/sun/awt/shell/
H A DWin32ShellFolderManager2.java556 Throwable cause = e.getCause();
558 if (cause instanceof Exception) {
559 throw (Exception) cause;
562 if (cause instanceof Error) {
563 throw (Error) cause;
566 throw new RuntimeException("Unexpected error", cause);
/openjdk7/jdk/src/share/classes/sun/management/
H A DAgent.java225 // Don't cause any errors.
393 final Throwable cause = x.getCause();
394 if (cause instanceof RuntimeException)
395 throw (RuntimeException) cause;
396 else if (cause instanceof Error)
397 throw (Error) cause;
399 throw new UnsupportedOperationException("Unsupported management property: " + SNMP_PORT,cause);
/openjdk7/jdk/src/solaris/demo/jni/Poller/
H A DPoller.c152 static jint throwOutOfMemoryError(JNIEnv *env, const char * cause)
155 cause);
158 static jint throwInterruptedIOException(JNIEnv *env, const char * cause)
162 cause);
165 static jint throwIllegalStateException(JNIEnv *env, const char * cause)
169 cause);
151 throwOutOfMemoryError(JNIEnv *env, const char * cause) argument
157 throwInterruptedIOException(JNIEnv *env, const char * cause) argument
164 throwIllegalStateException(JNIEnv *env, const char * cause) argument
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DparallelScavengeHeap.hpp192 void collect(GCCause::Cause cause);
198 void collect_as_vm_thread(GCCause::Cause cause);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPlatformEmbeddedFrame.java158 public boolean rejectFocusRequest(CausedFocusEvent.Cause cause) { argument
160 if (cause != CausedFocusEvent.Cause.MOUSE_EVENT &&
/openjdk7/hotspot/src/share/vm/services/
H A DmemoryService.cpp569 GCCause::Cause cause) {
581 countCollection, cause);
637 TraceMemoryManagerStats::TraceMemoryManagerStats(Generation::Name kind, GCCause::Cause cause) { argument
658 initialize(_fullGC, cause,true, true, true, true, true, true, true);
661 GCCause::Cause cause,
669 initialize(fullGC, cause, recordGCBeginTime, recordPreGCUsage, recordPeakUsage,
677 GCCause::Cause cause,
693 _cause = cause;
566 gc_end(bool fullGC, bool recordPostGCUsage, bool recordAccumulatedGCTime, bool recordGCEndTime, bool countCollection, GCCause::Cause cause) argument
660 TraceMemoryManagerStats(bool fullGC, GCCause::Cause cause, bool recordGCBeginTime, bool recordPreGCUsage, bool recordPeakUsage, bool recordPostGCUsage, bool recordAccumulatedGCTime, bool recordGCEndTime, bool countCollection) argument
676 initialize(bool fullGC, GCCause::Cause cause, bool recordGCBeginTime, bool recordPreGCUsage, bool recordPeakUsage, bool recordPostGCUsage, bool recordAccumulatedGCTime, bool recordGCEndTime, bool countCollection) argument
/openjdk7/jdk/test/java/nio/file/DirectoryStream/
H A DBasic.java110 IOException cause = x.getCause();
111 if (!(cause instanceof java.util.zip.ZipException))
/openjdk7/jdk/test/javax/management/remote/mandatory/serverError/
H A DJMXServerErrorTest.java60 public KaefferError(String message, Throwable cause) { argument
61 super(message,cause);
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DBadKdc.java77 Throwable cause = le.getCause();
78 if (cause instanceof Asn1Exception) {
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DComponentPeer.java348 * @param cause the cause of the focus change request
355 CausedFocusEvent.Cause cause);
353 requestFocus(Component lightweightChild, boolean temporary, boolean focusedWindowChangeAllowed, long time, CausedFocusEvent.Cause cause) argument
/openjdk7/hotspot/src/share/vm/gc_interface/
H A DcollectedHeap.hpp536 virtual void collect(GCCause::Cause cause) = 0;
542 virtual void collect_as_vm_thread(GCCause::Cause cause) = 0;
678 // Support for PromotionFailureALot. Return true if it's time to cause a
709 // Class to set and reset the GC cause for a CollectedHeap.
715 GCCauseSetter(CollectedHeap* heap, GCCause::Cause cause) { argument
720 _heap->set_gc_cause(cause);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/streaming/
H A DXMLStreamReaderFactory.java320 Throwable cause = e.getCause();
321 if (cause == null) {
322 cause = e;
324 throw new XMLReaderException("stax.cantCreate", cause);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/sym/
H A DCreateSymbols.java108 Throwable cause = t.getCause();
109 if (cause == null)
110 cause = t;
112 .printMessage(Diagnostic.Kind.ERROR, cause.getLocalizedMessage());
/openjdk7/jdk/src/share/classes/javax/security/auth/login/
H A DConfiguration.java500 Throwable cause = nsae.getCause();
501 if (cause instanceof IllegalArgumentException) {
502 throw (IllegalArgumentException)cause;
573 * calling <code>refresh</code> may cause the file to be re-read.

Completed in 157 milliseconds

1234567891011>>