Searched defs:failure (Results 1 - 25 of 44) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DRMIFailureHandler.java31 * <code>failure</code> method of the handler is invoked when the RMI
33 * for incoming calls. The <code>failure</code> method returns a boolean
43 * The <code>failure</code> callback is invoked when the RMI
47 * <code>RMISocketFacotry.setFailureHandler</code>. If no failure
58 public boolean failure(Exception ex); method in interface:RMIFailureHandler
/openjdk7/jdk/test/javax/management/descriptor/
H A DUnionTest.java83 if (failure != null)
84 throw new Exception("TEST FAILED: " + failure);
90 failure = "Union of empty descriptors should be " +
92 System.err.println("FAILED: " + failure);
100 failure = "Union should produce one of its arguments but does not";
101 System.err.println("FAILED: " + failure);
109 failure = "Union produced this: " + d + "; but should have " +
111 System.err.println("FAILED: " + failure);
116 private static String failure; field in class:UnionTest
/openjdk7/jdk/test/javax/management/mxbean/
H A DComparatorExceptionTest.java55 private static String failure; field in class:ComparatorExceptionTest
58 failure = "FAILED: " + why;
59 System.out.println(failure);
87 if (failure != null)
88 throw new Exception(failure);
H A DLeakTest.java72 if (failure != null)
73 throw new Exception("CLASSLOADER LEAK TEST FAILED: " + failure);
117 failure = why;
120 private static String failure; field in class:LeakTest
H A DMXBeanAnnotationTest.java61 failure = "MXBean with empty interface got exception: " + e;
62 System.out.println("FAILED: " + failure);
70 failure = "Registered a non-Standard MBean with @MXBean(false)";
71 System.out.println("FAILED: " + failure);
77 if (failure == null)
80 throw new Exception("TEST FAILED: " + failure);
91 failure = "MBean should " + (expected ? "" : "not ") +
97 private static String failure; field in class:MXBeanAnnotationTest
H A DOverloadTest.java56 if (failure != null)
57 throw new Exception(failure);
63 failure = "FAILED: got \"" + got + "\", expected \"" + expect + "\"";
64 System.out.println(failure);
98 private static String failure; field in class:OverloadTest
H A DTypeNameTest.java68 static volatile String failure; field in class:TypeNameTest
111 if (failure == null)
114 throw new Exception("TEST FAILED: " + failure);
119 failure = why;
H A DMXBeanPreRegisterTest.java71 if (failure != null)
72 throw new Exception("TEST FAILED: " + failure);
92 failure = testDescr;
93 System.out.println("FAILED: " + failure);
97 private static String failure; field in class:MXBeanPreRegisterTest
H A DMXBeanRefTest.java110 if (failure != null)
111 throw new Exception("TEST FAILED: " + failure);
120 failure = what;
159 private static String failure; field in class:MXBeanRefTest
/openjdk7/jdk/test/javax/management/openmbean/
H A DOpenTypeDescriptorTest.java101 failure("OpenType is " + openType + ", descriptor says " +
129 failure("OpenType for "+key+" is " + openType +
159 failure("did not get expected exception for " + t);
163 failure("wrong exception for " + t + ": " + e);
174 private static void failure(String what) { method in class:OpenTypeDescriptorTest
H A DTabularDataOrderTest.java57 private static String failure; field in class:TabularDataOrderTest
180 if (failure == null)
183 throw new Exception("TEST FAILED: " + failure);
188 failure = why;
/openjdk7/langtools/test/tools/javac/processing/model/util/deprecation/
H A DTestDeprecation.java56 boolean failure = false;
62 failure = deprecationChecker.scan(element);
65 if (failure)
73 private boolean failure; field in class:TestDeprecation.DeprecationChecker
77 failure = false;
91 failure = true;
99 return failure;
/openjdk7/jdk/test/java/nio/channels/
H A DTestThread.java34 Exception failure = null; field in class:TestThread
57 failure = x;
66 if (isAlive() && (failure == null))
67 failure = new Exception(name + ": Timed out");
68 if (failure != null) {
69 failure.printStackTrace(log);
79 if (failure != null)
80 failure = new Exception(name + " threw an exception",
81 failure);
82 if (isAlive() && (failure
[all...]
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DPostRegisterDeadlockTest.java126 if (failure == null)
136 if (failure == previous)
139 previous = failure;
157 if (failure == null)
169 if (failure == previous)
171 previous = failure;
173 if (failure == null)
176 throw new Exception("TEST FAILED: " + failure);
181 failure = (failure
184 private static volatile String failure; field in class:PostRegisterDeadlockTest
[all...]
H A DAttributeListTypeSafeTest.java38 private static String failure; field in class:AttributeListTypeSafeTest
69 if (failure == null)
72 throw new Exception("TEST FAILED: " + failure);
106 failure = why;
H A DPreDeregisterDeadlockTest.java149 if (failure == null)
152 throw new Exception("TEST FAILED: " + failure);
157 failure = why;
160 private static volatile String failure; field in class:PreDeregisterDeadlockTest
/openjdk7/jdk/test/javax/management/remote/mandatory/connectorServer/
H A DConnectorStopDeadlockTest.java48 private static String failure; field in class:ConnectorStopDeadlockTest
68 if (failure == null)
77 failure = e.toString();
82 failure = s;
/openjdk7/hotspot/src/os/solaris/fix_empty_sec_hdr_flags/
H A Dfix_empty_sec_hdr_flags.c43 static void failure(void);
77 failure();
91 failure();
101 failure();
107 failure();
125 failure();
178 failure() { function
/openjdk7/jdk/make/tools/fix_empty_sec_hdr_flags/
H A Dfix_empty_sec_hdr_flags.c43 static void failure(void);
77 failure();
91 failure();
101 failure();
107 failure();
125 failure();
178 failure() { function
/openjdk7/jdk/test/java/lang/StringBuffer/
H A DIndexOf.java34 private static boolean failure = false; field in class:IndexOf
41 if (failure)
49 failure = true;
144 throw new RuntimeException("Initial equality failure");
/openjdk7/jdk/test/javax/management/Introspector/
H A DChangingNotifsTest.java65 if (failure != null)
66 throw new Exception(failure);
100 failure = "FAILED: " + why;
101 System.out.println(failure);
104 private static String failure; field in class:ChangingNotifsTest
H A DInvokeGettersTest.java69 if (failure == null)
72 throw new Exception("TEST FAILED: " + failure);
150 failure = why;
156 private static String failure; field in class:InvokeGettersTest
H A DIdenticalMBeanInfoTest.java47 private static String failure = null; field in class:IdenticalMBeanInfoTest
117 System.out.println("IGNORING StandardMBean(...) failure");
129 if (failure == null) {
134 throw new Exception("TEST FAILED: " + failure);
139 failure = why;
/openjdk7/hotspot/src/os/solaris/add_gnu_debuglink/
H A Dadd_gnu_debuglink.c48 static void failure(void);
110 failure();
124 failure();
134 failure();
144 failure();
210 failure() { function
/openjdk7/jdk/make/tools/add_gnu_debuglink/
H A Dadd_gnu_debuglink.c48 static void failure(void);
110 failure();
124 failure();
134 failure();
144 failure();
210 failure() { function

Completed in 73 milliseconds

12