Searched defs:IDLE (Results 1 - 3 of 3) sorted by relevance

/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/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"));
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DHttpConnection.java64 public enum State {IDLE, REQUEST, RESPONSE}; enum constant in enum:HttpConnection.State

Completed in 35 milliseconds