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

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
H A DImsPhoneTest.java83 private ImsPhoneCall mBackgroundCall; field in class:ImsPhoneTest
119 mImsCT.mBackgroundCall = mBackgroundCall;
122 doReturn(Call.State.IDLE).when(mBackgroundCall).getState();
166 doReturn(Call.State.ACTIVE).when(mBackgroundCall).getState();
168 verify(mImsCT).hangup(mBackgroundCall);
329 assertEquals(mBackgroundCall, mImsPhoneUT.getBackgroundCall());
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DGsmCdmaCallTracker.java84 public GsmCdmaCall mBackgroundCall = new GsmCdmaCall(this); field in class:GsmCdmaCallTracker
125 toNotify.addAll(mBackgroundCall.getConnections());
609 && mBackgroundCall.getState() == GsmCdmaCall.State.HOLDING
610 && !mBackgroundCall.isFull()
625 || !mBackgroundCall.getState().isAlive()
645 !mBackgroundCall.getState().isAlive()));
656 && mBackgroundCall.getState() == GsmCdmaCall.State.HOLDING;
668 mBackgroundCall.clearDisconnected();
715 !(mForegroundCall.isIdle() && mBackgroundCall.isIdle())) {
1142 Rlog.i(LOG_TAG,"Background call: " + mBackgroundCall
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java63 private SipCall mBackgroundCall = new SipCall(); field in class:SipPhone
76 mBackgroundCall = new SipCall();
114 && mBackgroundCall.getState().isAlive()) {
229 mForegroundCall.switchWith(mBackgroundCall);
230 if (mBackgroundCall.getState().isAlive()) mBackgroundCall.hold();
248 + mBackgroundCall.getState());
251 mForegroundCall.merge(mBackgroundCall);
280 mBackgroundCall.clearDisconnected();
368 : mBackgroundCall
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCallTracker.java170 " bg = " + mBackgroundCall.getState());
203 (mBackgroundCall.getState() != ImsPhoneCall.State.IDLE)) {
285 public ImsPhoneCall mBackgroundCall = new ImsPhoneCall(this, field in class:ImsPhoneCallTracker
837 mBackgroundCall.dispose();
936 if (mBackgroundCall.getState() != ImsPhoneCall.State.IDLE) {
956 bgState = mBackgroundCall.getState();
1192 && mBackgroundCall.getState().isAlive()) {
1256 ", bg = " + mBackgroundCall.getState());
1258 if (mBackgroundCall.getState() == ImsPhoneCall.State.HOLDING) {
1260 mForegroundCall.switchWith(mBackgroundCall);
[all...]

Completed in 127 milliseconds