Searched defs:attempts (Results 1 - 11 of 11) sorted by relevance

/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/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/hotspot/src/os/windows/vm/
H A Dos_windows.inline.hpp59 inline void os::loop_breaker(int attempts) {} argument
H A Dos_windows.cpp3417 void os::yield_all(int attempts) { argument
4679 // spin attempts by this thread.
4730 // spin attempts by this thread.
/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;
/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++;
/openjdk7/jdk/src/share/transport/shmem/
H A DshmemBase.c382 int attempts = 10; local
383 while (!EMPTY(stream) && attempts>0) {
387 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);
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp3618 void os::yield_all(int attempts) { argument
3626 void os::loop_breaker(int attempts) { argument
3627 os::yield_all(attempts);
/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);

Completed in 112 milliseconds