Searched refs:tries (Results 1 - 12 of 12) sorted by relevance
| /openjdk7/hotspot/src/os/solaris/vm/ |
| H A D | osThread_solaris.cpp | 59 void OSThread::handle_spinlock_contention(int tries) { argument 62 if (tries > 10) { 63 os::yield_all(tries); // Yield to threads of any priority 64 } else if (tries > 5) {
|
| H A D | osThread_solaris.hpp | 99 static void handle_spinlock_contention(int tries); // Used for thread local eden locking
|
| /openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/unicast/ |
| H A D | UseCustomSocketFactory.java | 79 int tries = 8; 93 } while (--tries > 0); 96 TestLibrary.bomb("server not bound in 8 tries", null);
|
| /openjdk7/jdk/src/share/classes/sun/security/jca/ |
| H A D | ProviderConfig.java | 71 private int tries; field in class:ProviderConfig 117 tries = MAX_LOAD_TRIES; 127 return (tries < MAX_LOAD_TRIES); 132 tries = MAX_LOAD_TRIES; 186 tries++;
|
| /openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/activatable/ |
| H A D | UseCustomSocketFactory.java | 102 int tries = 12; // need enough tries for slow machine. 116 } while (--tries > 0); 119 TestLibrary.bomb("server not bound in 12 tries", null);
|
| /openjdk7/hotspot/test/compiler/5091921/ |
| H A D | Test6890943.java | 68 Map<Integer, Integer> tries = new HashMap<Integer, Integer>(); 73 tries.put(q, m.getValue()); 76 for (Map.Entry<Integer, Integer> m : tries.entrySet()) {
|
| /openjdk7/jdk/src/share/classes/java/security/ |
| H A D | KeyStore.java | 1571 int tries = 0; 1573 tries++; 1577 if ((tries < MAX_CALLBACK_TRIES) 1701 int tries = 0; 1703 tries++; 1709 if (tries < MAX_CALLBACK_TRIES) {
|
| /openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/ |
| H A D | InstructionAssembler.java | 220 for (int maxTries = 9, tries = 0;; ++tries) { 238 if (thisOverflow || tries == maxTries - 1) { 248 assert (tries <= maxTries);
|
| /openjdk7/jdk/src/macosx/native/sun/java2d/opengl/ |
| H A D | CGLGraphicsConfig.m | 106 int tries=0, status=-1; 107 while (status !=0 && tries<600) { 111 tries++; 112 NSLog(@"connection attempt %d failed.", tries);
|
| /openjdk7/jdk/src/solaris/classes/sun/awt/X11/ |
| H A D | XWM.java | 1473 int tries = 0; 1481 tries++; 1483 } while (tries < 50); 1506 * Fallback code tries to account for the two most common cases:
|
| /openjdk7/jdk/src/share/classes/sun/rmi/server/ |
| H A D | Activation.java | 1121 for (int tries = MAX_TRIES; tries > 0; tries--) { 1185 MAX_TRIES + " tries", detail);
|
| /openjdk7/make/scripts/ |
| H A D | webrev.ksh | 3026 msg=`$WGET --timeout=10 --tries=1 -q $url -O - | grep '<title>' | sed 's/<title>\(.*\)<\/title>/\1/' | sed "$cleanup" | html_quote`
|
Completed in 144 milliseconds