Searched refs:attempts (Results 1 - 25 of 27) sorted by relevance

12

/openjdk7/jdk/test/sun/management/jmxremote/bootstrap/
H A DLocalManagementTest.sh52 attempts=0
62 attempts=`expr $attempts + 1`
63 echo "Waiting $attempts second(s) ..."
H A DCustomLauncherTest.sh138 attempts=0
148 attempts=`expr $attempts + 1`
149 echo "Waiting $attempts second(s) ..."
/openjdk7/jdk/test/com/sun/tools/attach/
H A DApplicationSetup.sh62 attempts=0
72 attempts=`expr $attempts + 1`
73 echo "Waiting $attempts second(s) ..."
/openjdk7/jdk/test/com/sun/jdi/
H A DProcessAttachTest.sh94 attempts=0
101 attempts=`expr $attempts + 1`
102 echo "Waiting $attempts second(s) ..."
/openjdk7/jdk/src/share/classes/sun/net/dns/
H A DResolverConfiguration.java90 * Returns the maximum number of attempts the resolver
94 * @return the resolver attempts value or -1 is unknown
96 public int attempts() { method in class:ResolverConfiguration.Options
/openjdk7/jdk/test/java/beans/Performance/
H A DTestPropertyChangeSupport.java49 private static void test(int step, int listeners, int attempts) { argument
60 for (int i = 0; i < attempts; i++) {
69 + "; Attempts: " + attempts
H A DTestVetoableChangeSupport.java50 private static void test(int step, int listeners, int attempts) throws PropertyVetoException { argument
61 for (int i = 0; i < attempts; i++) {
70 + "; Attempts: " + attempts
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DCompilation.java43 private int attempts; field in class:Compilation
196 return attempts;
199 public void setAttempts(int attempts) { argument
200 this.attempts = attempts;
H A DLogCompilation.java112 int[] attempts = new int[32];
125 attempts[c.getAttempts()]++;
177 out.printf("%2d %8d\n", i, attempts[i]);
/openjdk7/jdk/test/java/nio/channels/AsynchronousChannelGroup/
H A DUnbounded.java64 int attempts = 0;
72 if (++attempts >= 3)
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DFinishConnect.java61 int attempts = 0;
93 if (attempts++ > 30)
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.inline.hpp59 inline void os::loop_breaker(int attempts) {} argument
/openjdk7/jdk/src/share/classes/sun/swing/
H A DCachedPainter.java122 int attempts = 0;
157 ((VolatileImage)image).contentsLost() && ++attempts < 3);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvm_operations.cpp421 int attempts = 0; local
437 } else if (attempts > max_wait) {
439 } else if (num_active_compiler_thread == 0 && attempts > max_wait_user_thread) {
443 attempts++;
H A Dos.hpp432 static void yield_all(int attempts = 0); // Yields to all other threads including lower priority
433 static void loop_breaker(int attempts); // called from within tight loops to possibly influence time-sharing
H A DsharedRuntime.hpp250 static void yield_all(JavaThread* thread, int attempts = 0);
H A DsharedRuntime.cpp921 JRT_ENTRY(void, SharedRuntime::yield_all(JavaThread* thread, int attempts))
922 os::yield_all(attempts);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1GCPhaseTimes.hpp190 void record_termination(uint worker_i, double ms, size_t attempts) {
192 _last_termination_attempts.set(worker_i, attempts);
/openjdk7/jdk/test/tools/launcher/
H A DTestHelper.java338 * attempts fail, give up and throw an exception.
342 for (int attempts = 0; attempts < 10; attempts++) {
348 * report attempts and errors that were encountered
352 aFile + " in " + (attempts + 1) +
353 " attempts");
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DDrawImage.java559 int attempts = 0;
593 ++attempts;
597 SurfaceData.isNull(srcData) || (attempts > 1))
622 int attempts = 0;
655 ++attempts;
659 SurfaceData.isNull(srcData) || (attempts > 1))
/openjdk7/jdk/src/share/classes/java/net/
H A DSocksSocketImpl.java121 for (int attempts = 0; received < len && attempts < 3; attempts++) {
/openjdk7/jdk/src/share/transport/shmem/
H A DshmemBase.c382 int attempts = 10; local
383 while (!EMPTY(stream) && attempts>0) {
387 attempts--;
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A DCHANGES1106 Added a check for attempts to read or write PLTE in grayscale PNG datastreams.
1120 if user attempts to run it on an 8-bit display.
3435 Corrects the code for palette image tests and disables attempts to
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp1287 // The following code is palliative -- it attempts to ensure that our
3201 // Since snv_84, Solaris attempts to honor the address hint - see 5003415.
3770 // time after 8 attempts. If this fails too we increase the concurrency level
3773 void os::yield_all(int attempts) { argument
3775 if (attempts == 0) {
3778 int iterations = attempts % 30;
3794 void os::loop_breaker(int attempts) { argument
3795 os::yield_all(attempts);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp3697 void os::yield_all(int attempts) { argument
3705 void os::loop_breaker(int attempts) { argument
3706 os::yield_all(attempts);

Completed in 197 milliseconds

12