Searched defs:mBackgroundCall (Results 1 - 4 of 4) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmCallTracker.java84 GsmCall mBackgroundCall = new GsmCall(this); field in class:GsmCallTracker
313 && mBackgroundCall.getState() == GsmCall.State.HOLDING
314 && !mBackgroundCall.isFull()
330 || !mBackgroundCall.getState().isAlive());
340 && mBackgroundCall.getState() == GsmCall.State.HOLDING;
349 mBackgroundCall.clearDisconnected();
400 !(mForegroundCall.isIdle() && mBackgroundCall.isIdle())) {
690 Rlog.i(LOG_TAG,"Background call: " + mBackgroundCall.toString());
692 l = mBackgroundCall.getConnections();
783 } else if (call == mBackgroundCall) {
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaCallTracker.java82 CdmaCall mBackgroundCall = new CdmaCall(this); field in class:CdmaCallTracker
364 && mBackgroundCall.getState() == CdmaCall.State.HOLDING
365 && !mBackgroundCall.isFull()
382 || !mBackgroundCall.getState().isAlive());
400 !mBackgroundCall.getState().isAlive()));
417 mBackgroundCall.clearDisconnected();
471 !(mForegroundCall.isIdle() && mBackgroundCall.isIdle())) {
859 } else if (call == mBackgroundCall) {
1206 pw.println(" mBackgroundCall=" + mBackgroundCall);
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCallTracker.java117 (mBackgroundCall.getState() != ImsPhoneCall.State.IDLE)) {
152 ImsPhoneCall mBackgroundCall = new ImsPhoneCall(this); field in class:ImsPhoneCallTracker
239 mBackgroundCall.dispose();
316 if (mBackgroundCall.getState() != ImsPhoneCall.State.IDLE) {
333 bgState = mBackgroundCall.getState();
443 && mBackgroundCall.getState().isAlive()) {
498 mCallExpectedToResume = mBackgroundCall.getImsCall();
499 mForegroundCall.switchWith(mBackgroundCall);
506 mForegroundCall.switchWith(mBackgroundCall);
509 } else if (mBackgroundCall
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java61 private SipCall mBackgroundCall = new SipCall(); field in class:SipPhone
72 mBackgroundCall = new SipCall();
110 && mBackgroundCall.getState().isAlive()) {
218 mForegroundCall.switchWith(mBackgroundCall);
219 if (mBackgroundCall.getState().isAlive()) mBackgroundCall.hold();
237 + mBackgroundCall.getState());
240 mForegroundCall.merge(mBackgroundCall);
269 mBackgroundCall.clearDisconnected();
357 : mBackgroundCall
[all...]

Completed in 103 milliseconds