Home | History | Annotate | Download | only in phone

Lines Matching full:boolean

36  * right now, we instead have that logic here, and provide simple boolean
45 private static final boolean DBG = (PhoneApp.DBG_LEVEL >= 2);
51 // Our "public API": Boolean flags to indicate the state and/or
55 public boolean manageConferenceVisible;
56 public boolean manageConferenceEnabled;
58 public boolean canAddCall;
60 public boolean canSwap;
61 public boolean canMerge;
63 public boolean bluetoothEnabled;
64 public boolean bluetoothIndicatorOn;
66 public boolean speakerEnabled;
67 public boolean speakerOn;
69 public boolean canMute;
70 public boolean muteIndicatorOn;
72 public boolean dialpadEnabled;
73 public boolean dialpadVisible;
76 public boolean supportsHold;
78 public boolean onHold;
84 public boolean canHold;
94 * Updates all our public boolean flags based on the current state of
98 final boolean hasRingingCall = !mPhone.getRingingCall().isIdle();
101 final boolean hasActiveForegroundCall = (fgCallState == Call.State.ACTIVE);
102 final boolean hasHoldingCall = !mPhone.getBackgroundCall().isIdle();
147 boolean isEmergencyCall = false;
180 boolean okToHold = hasActiveForegroundCall && !hasHoldingCall;
181 boolean okToUnhold = onHold;