Searched refs:IDLE (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/pool/
H A DConnectionDesc.java41 static final byte IDLE = (byte)1; field in class:ConnectionDesc
46 private byte state = IDLE; // initial state
82 * Changes the state of a ConnectionDesc from BUSY to IDLE and
89 state = IDLE;
99 * If ConnectionDesc is IDLE, change its state to BUSY and return
107 if (state == IDLE) {
117 * If ConnectionDesc is IDLE and has expired, close the corresponding
126 if (state == IDLE && idleSince < threshold) {
142 (state == BUSY ? "busy" : (state == IDLE ? "idle" : "expired"));
H A DConnections.java342 case ConnectionDesc.IDLE:
/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DPrinterState.java62 public static final PrinterState IDLE = new PrinterState(3); field in class:PrinterState
98 IDLE,
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DHttpConnection.java64 public enum State {IDLE, REQUEST, RESPONSE}; enum constant in enum:HttpConnection.State
H A DServerImpl.java473 case IDLE:
799 c.setState (State.IDLE);

Completed in 50 milliseconds