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

12

/openjdk7/jdk/test/javax/management/Introspector/
H A DSetWrongTypeAttributeTest.java173 if (failure == null)
176 throw new Exception("TEST FAILED: " + failure);
207 failure = what + ": " + msg;
208 System.out.println("FAILED: " + failure);
211 private static String failure; field in class:SetWrongTypeAttributeTest
/openjdk7/jdk/test/javax/management/mxbean/
H A DGenericTypeTest.java113 private static String failure; field in class:GenericTypeTest
141 if (failure != null)
142 throw new Exception("TEST FAILED: " + failure);
148 failure = msg;
H A DPreRegisterNameTest.java163 throw new Exception("TEST FAILED: " + failure);
168 failure = msg;
173 private static String failure; field in class:PreRegisterNameTest
H A DExceptionDiagnosisTest.java46 private static volatile String failure; field in class:ExceptionDiagnosisTest
150 if (failure == null)
153 throw new Exception("TEST FAILED: " + failure);
256 failure = why;
H A DMXBeanTest.java146 failure("wrong number of attributes: " + attrs);
156 failure("MBeanAttributeInfo: " + mbai);
163 failure("getAttribute: " + Arrays.toString(ints));
171 failure("getAttribute through proxy: " + Arrays.toString(pints));
296 failure(msg);
320 failure(msg);
332 failure(msg);
374 failure(mname + " got non-null value " +
385 failure(mname + " got open data " + gotOpen +
391 failure(mnam
431 private static void failure(String what) { method in class:MXBeanTest
436 private static void failure(String what, Exception e) { method in class:MXBeanTest
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DEnvironment.java122 public void failure(String message) { method in class:Environment
/openjdk7/jdk/test/java/util/BitSet/
H A DBSMethods.java40 private static boolean failure = false; field in class:BSMethods
44 failure = true;
140 if (failure)
148 failure = true;
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DNotificationBufferDeadlockTest.java102 failure = e.toString();
105 if (failure == null)
108 throw new Exception("TEST FAILED: " + failure);
140 failure = fail;
249 failure = "Query deadlock detected";
308 static String failure; field in class:NotificationBufferDeadlockTest
/openjdk7/jdk/test/java/math/BigInteger/
H A DBigIntegerTest.java53 static boolean failure = false; field in class:BigIntegerTest
737 if (failure)
743 * a lot of numbers that will find failure points, such as max sized
801 failure = true;
/openjdk7/jdk/test/javax/management/openmbean/
H A DBadConstraintTest.java42 private static String failure; field in class:BadConstraintTest
48 if (failure == null)
51 throw new Exception("TEST FAILED: " + failure);
254 failure = why;
H A DConstraintTest.java39 private static String failure; field in class:ConstraintTest
78 if (failure == null)
81 throw new Exception("TEST FAILED: " + failure);
341 failure = why;
/openjdk7/hotspot/agent/test/jdi/
H A DTestScaffold.java285 failure("FAILED: Exception occured in eventHandler: " + e);
373 protected void failure(String str) { method in class:TestScaffold
/openjdk7/jdk/test/com/sun/jdi/
H A DTestScaffold.java296 failure("FAILED: Exception occured in eventHandler: " + e);
355 failure("FAIL: redefine - unexpected exception: " + exc);
397 failure("FAIL: async redefine - unexpected exception: " + exc);
449 protected void failure(String str) { method in class:TestScaffold
/openjdk7/jdk/test/java/util/regex/
H A DRegExTest.java51 private static boolean failure = false; field in class:RegExTest
141 if (failure)
219 failure = true;
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DOldMBeanServerTest.java119 private static String failure; field in class:OldMBeanServerTest
140 if (failure == null)
143 throw new Exception("TEST FAILED: " + failure);
187 failure =
190 System.out.println(failure);
205 failure = m.getName() + ": " + prob + " " +
207 System.out.println(failure);
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.cpp1540 BasicBlock *failure = function()->CreateBlock("failure"); local
1546 success, failure);
1548 builder()->SetInsertPoint(failure);
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivation.java1004 synchronized void inactiveGroup(long incarnation, boolean failure) argument
1013 if (failure) {
1138 boolean failure = false;
1147 failure = true;
1151 failure = true;
1172 inactiveGroup(currentIncarnation, failure);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp2579 void LIR_Assembler::emit_typecheck_helper(LIR_OpTypeCheck *op, Label* success, Label* failure, Label* obj_is_null) { argument
2580 // we always need a stub for the failure case.
2625 Label *failure_target = op->should_profile() ? &profile_cast_failure : failure;
2683 // Jump over the failure case
2686 // Cast failure case
2697 __ ba(*failure);
2777 // Cast failure case
2802 Label success, failure, done; local
2803 emit_typecheck_helper(op, &success, &failure, &failure);
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRAssembler_x86.cpp1648 void LIR_Assembler::emit_typecheck_helper(LIR_OpTypeCheck *op, Label* success, Label* failure, Label* obj_is_null) { argument
1649 // we always need a stub for the failure case.
1674 Label *failure_target = op->should_profile() ? &profile_cast_failure : failure;
1801 __ jmp(*failure);
1902 Label success, failure, done; local
1903 emit_typecheck_helper(op, &success, &failure, &failure);
1904 __ bind(failure);

Completed in 97 milliseconds

12