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

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
H A DImsPhoneTest.java74 private ImsPhoneCall mForegroundCall; field in class:ImsPhoneTest
110 mImsCT.mForegroundCall = mForegroundCall;
113 doReturn(Call.State.IDLE).when(mForegroundCall).getState();
164 doReturn(Call.State.ACTIVE).when(mForegroundCall).getState();
182 doReturn(Call.State.IDLE).when(mForegroundCall).getState();
191 doReturn(Call.State.ACTIVE).when(mForegroundCall).getState();
217 doReturn(Call.State.ACTIVE).when(mForegroundCall).getState();
230 doReturn(Call.State.ACTIVE).when(mForegroundCall).getState();
247 doReturn(Call.State.ACTIVE).when(mForegroundCall)
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DGsmCdmaCallTracker.java79 public GsmCdmaCall mForegroundCall = new GsmCdmaCall(this); field in class:GsmCdmaCallTracker
120 toNotify.addAll(mForegroundCall.getConnections());
242 connCopy = (List<Connection>) mForegroundCall.mConnections.clone();
271 if (mForegroundCall.getState() == GsmCdmaCall.State.ACTIVE) {
293 if (mForegroundCall.getState() != GsmCdmaCall.State.IDLE) {
299 this, mForegroundCall);
405 if (mForegroundCall.getState() == GsmCdmaCall.State.ACTIVE) {
410 this, mForegroundCall);
452 if (!mForegroundCall.isIdle()) {
458 checkForTestEmergencyNumber(dialString), this, mForegroundCall);
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCallTracker.java123 " fg = " + mForegroundCall.getState() +
131 (isUnknown? mForegroundCall: mRingingCall), isUnknown);
141 if ((mForegroundCall.getState() != ImsPhoneCall.State.IDLE) ||
187 public ImsPhoneCall mForegroundCall = new ImsPhoneCall(this, field in class:ImsPhoneCallTracker
287 mForegroundCall.dispose();
370 if (mForegroundCall.getState() == ImsPhoneCall.State.ACTIVE) {
390 fgState = mForegroundCall.getState();
405 checkForTestEmergencyNumber(dialString), this, mForegroundCall,
543 if (mForegroundCall.getState().isAlive()
549 && mForegroundCall
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java62 private SipCall mForegroundCall = new SipCall(); field in class:SipPhone
75 mForegroundCall = new SipCall();
113 if (mForegroundCall.getState().isAlive()
127 boolean makeCallWait = mForegroundCall.getState().isAlive();
200 if (mForegroundCall.getState() == SipCall.State.ACTIVE) {
203 if (mForegroundCall.getState() != SipCall.State.IDLE) {
208 mForegroundCall.setMute(false);
210 Connection c = mForegroundCall.dial(dialString);
229 mForegroundCall.switchWith(mBackgroundCall);
231 if (mForegroundCall
[all...]

Completed in 136 milliseconds