Home | History | Annotate | Download | only in phone

Lines Matching full:state

30  * or "checked" state of the various controls available in the in-call
31 * UI, based on the current telephony state.
37 * state and/or enabledness of all possible in-call user operations.
50 // Our "public API": Boolean flags to indicate the state and/or
95 * Updates all our public boolean flags based on the current state of
99 final Phone.State state = mCM.getState(); // coarse-grained voice call state
101 final Call.State fgCallState = fgCall.getState();
102 final boolean hasActiveForegroundCall = (fgCallState == Call.State.ACTIVE);
124 // needed, like during the brief "Call ended" state, where the phone is
143 // The current speaker state comes from the AudioManager.
144 speakerEnabled = (state != Phone.State.IDLE);
180 onHold = hasHoldingCall && (fgCallState == Call.State.IDLE);
182 // no way to either hold or unhold in the current state.
186 } else if (hasHoldingCall && (fgCallState == Call.State.IDLE)) {