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

<<1112

/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.cpp1687 void CMSCollector::request_full_gc(unsigned int full_gc_count, GCCause::Cause cause) {
1693 _full_gc_cause = cause;
1701 GCCause::Cause cause = GenCollectedHeap::heap()->gc_cause();
1702 return GCCause::is_user_requested_gc(cause) ||
1703 GCCause::is_serviceability_requested_gc(cause);
1915 // Reset the expansion cause, now that we just completed
2195 void CMSCollector::collect_in_background(bool clear_all_soft_refs, GCCause::Cause cause) {
2214 register_gc_start(cause);
2215 // Reset the expansion cause, now that we are about to begin
2438 void CMSCollector::register_foreground_gc_start(GCCause::Cause cause) {
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcTraceSend.cpp47 event.set_cause((u2) _shared_gc_info.cause());
/openjdk7/jdk/src/share/classes/java/beans/
H A DMetaData.java317 Throwable cause = e.getCause();
318 if (cause instanceof RuntimeException)
319 throw (RuntimeException)cause;
320 if (cause instanceof Error)
321 throw (Error)cause;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.cpp192 assert(hr->get_next_young_region() == NULL, "cause it should!");
203 assert(hr->get_next_young_region() == NULL, "cause it should!");
352 assert(_survivor_tail != NULL, "cause it shouldn't be");
712 // fields will be inconsistent. This could cause a refinement
1172 // from being enqueued, and cause it to be missed.
2432 bool G1CollectedHeap::should_do_concurrent_full_gc(GCCause::Cause cause) { argument
2433 switch (cause) {
2563 void G1CollectedHeap::collect_as_vm_thread(GCCause::Cause cause) { argument
2565 GCCauseSetter gcs(this, cause);
2566 switch (cause) {
2578 collect(GCCause::Cause cause) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DFont.java208 * <p>Several attributes will cause additional rendering overhead
213 * <p>Note: Font rotations can cause text baselines to be rotated. In
995 Throwable cause = t.getCause();
996 if (cause instanceof FontFormatException) {
997 throw (FontFormatException)cause;
/openjdk7/jdk/src/share/classes/sun/text/bidi/
H A DBidiBase.java3324 * will not cause this method to return true.
3540 Throwable cause = e.getCause();
3541 if (cause instanceof RuntimeException)
3542 throw (RuntimeException)cause;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXComponentPeer.java296 CausedFocusEvent.Cause cause)
308 time, cause);
351 time, cause);
294 requestFocus(Component lightweightChild, boolean temporary, boolean focusedWindowChangeAllowed, long time, CausedFocusEvent.Cause cause) argument
/openjdk7/jdk/src/share/classes/sun/invoke/util/
H A DValueConversions.java1227 private static InternalError newInternalError(String message, Throwable cause) { argument
1229 e.initCause(cause);
1232 private static InternalError newInternalError(Throwable cause) { argument
1234 e.initCause(cause);
/openjdk7/hotspot/make/windows/
H A Dcreate.bat162 echo # Changing a variable below and then deleting %ProjectFile% will cause >> %HotSpotBuildSpace%\%%i\local.make
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWWindowPeer.java1208 public boolean requestWindowFocus(CausedFocusEvent.Cause cause) { argument
1218 if (platformWindow.rejectFocusRequest(cause)) {
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPlatformWindow.java695 public boolean rejectFocusRequest(CausedFocusEvent.Cause cause) { argument
697 if (cause != CausedFocusEvent.Cause.MOUSE_EVENT &&
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DZipFileIndex.java1169 protected ZipFormatException(String message, Throwable cause) { argument
1170 super(message, cause);
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.hpp220 // will never cause Class instances to be biased but this code
415 void make_unloaded(BoolObjectClosure* is_alive, oop cause);
H A Dnmethod.cpp1186 void nmethod::make_unloaded(BoolObjectClosure* is_alive, oop cause) { argument
1202 "), cause(" INTPTR_FORMAT ")",
1203 this, (address)_method, (address)cause);
1205 cause->klass()->print();
1597 // The RedefineClasses() API can cause the class unloading invariant
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/resources/
H A Daliasmap200 alias sun.gc.cause // 1.5.0 b39
201 hotspot.gc.cause // 1.4.2_02
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIConnectionImpl.java1640 Throwable cause) {
1642 return EnvHelp.initCause(x,cause);
1639 newIOException(String message, Throwable cause) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSymbol.java1413 public CompletionFailure initCause(Throwable cause) { argument
1414 super.initCause(cause);
/openjdk7/jdk/src/share/classes/sun/tools/jstat/resources/
H A Djstat_options470 data sun.gc.cause
/openjdk7/jdk/src/share/classes/sun/security/tools/policytool/
H A DPolicyTool.java382 Throwable cause = ioe.getCause();
383 if (cause != null &&
384 cause instanceof javax.security.auth.login.LoginException &&
385 MSG.equals(cause.getMessage())) {
/openjdk7/hotspot/src/share/vm/runtime/
H A Darguments.cpp1979 // UseMemSetInBOT (it is known to cause issues), but allow
1983 warning("Experimental flag -XX:+UseMemSetInBOT is known to cause instability"
/openjdk7/jdk/make/jpda/jdwp/
H A Djdwp.spec1983 "this can cause inconsistent states in the application. "
2230 "are applied. If none of those filters cause the event to be "
2814 "here will, in fact, be handled by a native method and not cause "
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJComponent.java2072 * appropriate component in the hierarchy, and cause a specific method
3069 * cause different tooltips to be displayed differently.
3557 sun.awt.CausedFocusEvent.Cause cause)
4284 * <code>component.getLocation().x</code> because it doesn't cause any
4296 * <code>component.getLocation().y</code> because it doesn't cause any
4308 * <code>component.getSize().width</code> because it doesn't cause any
4320 * <code>component.getSize().height</code> because it doesn't cause any
4876 * descendants of this component will cause the entire tree
4908 * Returns {@code true} if a paint triggered on a child component should cause
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.cpp3154 CHECK_OFFSET("java/lang/Throwable", java_lang_Throwable, cause, "Ljava/lang/Throwable;");

Completed in 207 milliseconds

<<1112