HomeSort by relevance Sort by last modified time
    Searched defs:mForegroundCall (Results 1 - 7 of 7) sorted by null

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhone.java 60 private SipCall mForegroundCall = new SipCall();
71 mForegroundCall = new SipCall();
109 if (mForegroundCall.getState().isAlive()
123 boolean makeCallWait = mForegroundCall.getState().isAlive();
196 if (mForegroundCall.getState() == SipCall.State.ACTIVE) {
199 if (mForegroundCall.getState() != SipCall.State.IDLE) {
204 mForegroundCall.setMute(false);
206 Connection c = mForegroundCall.dial(dialString);
218 mForegroundCall.switchWith(mBackgroundCall);
220 if (mForegroundCall.getState().isAlive()) mForegroundCall.unhold()
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
CallsManager.java 130 private Call mForegroundCall;
295 return mForegroundCall;
528 if (mForegroundCall != null && mForegroundCall != call &&
529 (mForegroundCall.isActive() ||
530 mForegroundCall.getState() == CallState.DIALING)) {
531 if (0 == (mForegroundCall.getCallCapabilities() & PhoneCapabilities.HOLD)) {
535 if (mForegroundCall.getConnectionService() != call.getConnectionService()) {
536 mForegroundCall.disconnect();
540 mForegroundCall, call)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCallTracker.java 81 GsmCall mForegroundCall = new GsmCall(this);
157 connCopy = (List<Connection>) mForegroundCall.mConnections.clone();
184 if (mForegroundCall.getState() == GsmCall.State.ACTIVE) {
198 if (mForegroundCall.getState() != GsmCall.State.IDLE) {
204 this, mForegroundCall);
310 return mForegroundCall.getState() == GsmCall.State.ACTIVE
313 && !mForegroundCall.isFull();
327 && (!mForegroundCall.getState().isAlive()
335 return (mForegroundCall.getState() == GsmCall.State.ACTIVE
336 || mForegroundCall.getState() == GsmCall.State.ALERTIN
    [all...]
GsmServiceStateTracker.java 565 mPhone.mCT.mForegroundCall.hangupIfAlive();
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneCallTracker.java 115 if ((mForegroundCall.getState() != ImsPhoneCall.State.IDLE) ||
150 ImsPhoneCall mForegroundCall = new ImsPhoneCall(this);
231 mForegroundCall.dispose();
306 if (mForegroundCall.getState() == ImsPhoneCall.State.ACTIVE) {
323 fgState = mForegroundCall.getState();
338 checkForTestEmergencyNumber(dialString), this, mForegroundCall);
433 if (mForegroundCall.getState().isAlive()
439 && mForegroundCall.getState().isAlive()) {
480 if (mForegroundCall.getState() == ImsPhoneCall.State.ACTIVE) {
481 ImsCall imsCall = mForegroundCall.getImsCall()
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCallTracker.java 76 CdmaCall mForegroundCall = new CdmaCall(this);
107 mForegroundCall.setGeneric(false);
208 mForegroundCall.setGeneric(false);
213 if (mForegroundCall.getState() == CdmaCall.State.ACTIVE) {
218 this, mForegroundCall);
266 if (!mForegroundCall.isIdle()) {
272 checkForTestEmergencyNumber(dialString), this, mForegroundCall);
301 cwConn.updateParent(mRingingCall, mForegroundCall);
326 } else if (mForegroundCall.getConnections().size() > 1) {
358 return mForegroundCall.getState() == CdmaCall.State.ACTIV
    [all...]
CdmaServiceStateTracker.java     [all...]

Completed in 81 milliseconds