Searched refs:BUSY (Results 1 - 9 of 9) sorted by relevance
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/pool/ |
H A D | ConnectionDesc.java | 40 static final byte BUSY = (byte)0; field in class:ConnectionDesc 57 state = BUSY; 82 * Changes the state of a ConnectionDesc from BUSY to IDLE and 88 if (state == BUSY) { 99 * If ConnectionDesc is IDLE, change its state to BUSY and return 108 state = BUSY; 142 (state == BUSY ? "busy" : (state == IDLE ? "idle" : "expired"));
|
H A D | Connections.java | 339 case ConnectionDesc.BUSY:
|
/openjdk7/jdk/src/share/classes/javax/accessibility/ |
H A D | AccessibleState.java | 95 public static final AccessibleState BUSY field in class:AccessibleState
|
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/ |
H A D | parNewGeneration.cpp | 1428 #define BUSY (oop(0x1aff1aff)) macro 1455 if (cur_overflow_list != BUSY) { 1504 oop prefix = (oop)Atomic::xchg_ptr(BUSY, &_overflow_list); 1509 for (size_t spin = 0; prefix == BUSY && spin < spin_count; spin++) { 1516 } else if (_overflow_list != BUSY) { 1518 prefix = (oop)Atomic::xchg_ptr(BUSY, &_overflow_list); 1521 if (prefix == NULL || prefix == BUSY) { 1524 // Write back the NULL in case we overwrote it with BUSY above 1526 (void) Atomic::cmpxchg_ptr(NULL, &_overflow_list, BUSY); 1530 assert(prefix != NULL && prefix != BUSY, "Erro 1616 #undef BUSY macro [all...] |
/openjdk7/jdk/src/share/classes/javax/swing/ |
H A D | JScrollBar.java | 585 ((oldValue) ? AccessibleState.BUSY : null), 586 ((b) ? AccessibleState.BUSY : null)); 844 states.add(AccessibleState.BUSY);
|
H A D | JSlider.java | 657 ((oldValue) ? AccessibleState.BUSY : null), 658 ((b) ? AccessibleState.BUSY : null)); 1445 states.add(AccessibleState.BUSY);
|
H A D | JProgressBar.java | 1051 states.add(AccessibleState.BUSY);
|
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | Scrollbar.java | 949 ((oldValue) ? AccessibleState.BUSY : null), 950 ((b) ? AccessibleState.BUSY : null)); 1261 states.add(AccessibleState.BUSY);
|
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/ |
H A D | concurrentMarkSweepGeneration.cpp | 8893 #define BUSY (oop(0x1aff1aff)) 8926 oop prefix = (oop)Atomic::xchg_ptr(BUSY, &_overflow_list); 8934 for (size_t spin = 0; prefix == BUSY && spin < CMSOverflowSpinCount; spin++) { 8939 } else if (_overflow_list != BUSY) { 8941 prefix = (oop)Atomic::xchg_ptr(BUSY, &_overflow_list); 8946 // the list in the BUSY state below, it must be the case that 8948 // to a non-BUSY state in the future. 8949 if (prefix == NULL || prefix == BUSY) { 8952 // Write back the NULL in case we overwrote it with BUSY above 8954 (void) Atomic::cmpxchg_ptr(NULL, &_overflow_list, BUSY); [all...] |
Completed in 54 milliseconds