Searched defs:cause (Results 151 - 175 of 211) sorted by relevance

123456789

/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepThread.cpp143 GCCause::Cause cause = _collector->_full_gc_requested ? local
145 _collector->collect_in_background(false, cause);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dvm_operations_g1.hpp58 GCCause::Cause cause)
59 : VM_GC_Operation(gc_count_before, cause, full_gc_count_before) { }
56 VM_G1CollectFull(unsigned int gc_count_before, unsigned int full_gc_count_before, GCCause::Cause cause) argument
/openjdk7/hotspot/src/share/vm/services/
H A DmemoryManager.cpp264 GCCause::Cause cause) {
322 GCCause::to_string(cause));
261 gc_end(bool recordPostGCUsage, bool recordAccumulatedGCTime, bool recordGCEndTime, bool countCollection, GCCause::Cause cause) argument
H A DgcNotifier.cpp43 void GCNotifier::pushNotification(GCMemoryManager *mgr, const char *action, const char *cause) { argument
50 GCNotificationRequest *request = new GCNotificationRequest(os::javaTimeMillis(),mgr,action,cause,stat);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/fault/
H A DExceptionBean.java80 @XmlElement(namespace=NS,name="cause")
81 public ExceptionBean cause; field in class:ExceptionBean
101 Throwable cause = t.getCause();
102 if(t!=cause && cause!=null)
103 this.cause = new ExceptionBean(cause);
114 if(cause!=null)
115 e.initCause(cause.toException());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/
H A DServiceFinder.java223 private static void fail(final Class service, final String msg, final Throwable cause) argument
227 if (null != cause) {
228 sce.initCause(cause);
239 private static void fail(final Class service, final URL u, final int line, final String msg, final Throwable cause) argument
241 fail(service, LocalizationMessages.WSP_0024_SPI_FAIL_SERVICE_URL_LINE_MSG(u , line, msg), cause);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DServiceFinder.java220 private static void fail(Class service, String msg, Throwable cause) argument
224 sce.initCause(cause);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DBaseFileObject.java102 public CannotCreateUriError(String value, Throwable cause) { argument
103 super(value, cause);
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DProviderList.java63 * An application can cause more providers to be added by means of
66 * addProviderAtFront method can also cause a change in the ordering
331 Exception cause) {
336 cause);
328 createGSSException(Provider p, String className, String trailingMsg, Exception cause) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DDOMUtil.java845 * Creates a DOMException. On J2SE 1.4 and above the cause for the exception will be set.
847 public static DOMException createDOMException(short code, Throwable cause) { argument
848 DOMException de = new DOMException(code, cause != null ? cause.getMessage() : null);
849 if (cause != null && ThrowableMethods.fgThrowableMethodsAvailable) {
851 ThrowableMethods.fgThrowableInitCauseMethod.invoke(de, new Object [] {cause});
860 * Creates an LSException. On J2SE 1.4 and above the cause for the exception will be set.
862 public static LSException createLSException(short code, Throwable cause) { argument
863 LSException lse = new LSException(code, cause != null ? cause
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DThrowable.java54 * contain a <i>cause</i>: another throwable that caused this
57 * cause can, itself, have a cause, and so on, leading to a "chain" of
60 * <p>One reason that a throwable may have a cause is that the class that
68 * cause) allows the upper layer to communicate the details of the failure to
74 * <p>A second reason that a throwable may have a cause is that the method
76 * permit the method to throw the cause directly. For example, suppose
87 * <p>A cause can be associated with a throwable in two ways: via a
88 * constructor that takes the cause as an argument, or via the
91 * that take a cause an
197 private Throwable cause = this; field in class:Throwable
286 Throwable(String message, Throwable cause) argument
309 Throwable(Throwable cause) argument
356 Throwable(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) argument
454 initCause(Throwable cause) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIConnectorServer.java825 Throwable cause) {
827 return EnvHelp.initCause(x,cause);
824 newIOException(String message, Throwable cause) argument
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsGCAdaptivePolicyCounters.hpp188 inline void update_scavenge_skipped(int cause) { argument
189 _scavenge_skipped->set_value(cause);
/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);
H A DgcTrace.hpp79 void set_cause(GCCause::Cause cause) { _cause = cause; } argument
80 GCCause::Cause cause() const { return _cause; } function in class:VALUE_OBJ_CLASS_SPEC
118 void report_gc_start(GCCause::Cause cause, jlong timestamp);
128 virtual void report_gc_start_impl(GCCause::Cause cause, jlong timestamp);
/openjdk7/hotspot/src/share/vm/gc_interface/
H A DgcCause.hpp76 inline static bool is_user_requested_gc(GCCause::Cause cause) { argument
77 return (cause == GCCause::_java_lang_system_gc ||
78 cause == GCCause::_jvmti_force_gc);
82 cause) {
83 return (cause == GCCause::_jvmti_force_gc ||
84 cause == GCCause::_heap_inspection ||
85 cause == GCCause::_heap_dump);
89 static const char* to_string(GCCause::Cause cause);
101 GCCauseString(const char* prefix, GCCause::Cause cause) { argument
103 _position = jio_snprintf(_buffer, _length, "%s (%s)", prefix, GCCause::to_string(cause));
81 is_serviceability_requested_gc(GCCause::Cause cause) argument
[all...]
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/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DClassReader.java490 public ClassFormatException(String message, Throwable cause) { argument
491 super(message, cause);
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/util/
H A DEnvHelp.java220 * Initialize the cause field of a {@code Throwable} object.
222 * @param throwable The {@code Throwable} on which the cause is set.
223 * @param cause The cause to set on the supplied {@code Throwable}.
224 * @return the {@code Throwable} with the cause field initialized.
227 Throwable cause) {
228 throwable.initCause(cause);
233 * Returns the cause field of a {@code Throwable} object.
234 * The cause field can be got only if <var>t</var> has an
236 * @param t {@code Throwable} on which the cause mus
226 initCause(T throwable, Throwable cause) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/logging/
H A DLogger.java283 * If {@code cause} parameter is not {@code null}, it is logged as well and
284 * {@code exception} original cause is initialized with instance referenced
285 * by {@code cause} parameter.
289 * @param cause initial cause of the exception that should be logged as well
290 * and set as {@code exception}'s original cause. May be {@code null}.
294 public <T extends Throwable> T logSevereException(final T exception, final Throwable cause) { argument
296 if (cause == null) {
299 exception.initCause(cause);
300 logger.logp(Level.SEVERE, componentClassName, getCallerMethodName(), exception.getMessage(), cause);
368 logException(final T exception, final Throwable cause, final Level level) argument
[all...]
/openjdk7/langtools/make/tools/GenStubs/
H A DGenStubs.java101 Fault(String message, Throwable cause) { argument
103 initCause(cause);
200 void error(String message, Throwable cause) { argument
/openjdk7/jdk/src/share/native/java/lang/
H A DClassLoader.c321 jthrowable cause; local
350 cause = (*env)->ExceptionOccurred(env);
351 if (cause) {
353 (*env)->Throw(env, cause);
369 cause = (*env)->ExceptionOccurred(env);
370 if (cause) {
373 (*env)->Throw(env, cause);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DAlerts.java161 static SSLException getSSLException(byte description, Throwable cause, argument
168 if (cause != null) {
169 reason = cause.toString();
212 if (cause != null) {
213 e.initCause(cause);
/openjdk7/jdk/src/share/classes/sun/management/
H A DAgentConfigurationError.java122 public AgentConfigurationError(String error, Throwable cause) { argument
123 super(cause);
137 public AgentConfigurationError(String error, Throwable cause, String... params) { argument
138 super(cause);
/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

Completed in 102 milliseconds

123456789