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.java81 private ImsPhoneCall mForegroundCall; field in class:ImsPhoneTest
118 mImsCT.mForegroundCall = mForegroundCall;
121 doReturn(Call.State.IDLE).when(mForegroundCall).getState();
174 doReturn(Call.State.ACTIVE).when(mForegroundCall).getState();
192 doReturn(Call.State.IDLE).when(mForegroundCall).getState();
201 doReturn(Call.State.ACTIVE).when(mForegroundCall).getState();
227 doReturn(Call.State.ACTIVE).when(mForegroundCall).getState();
240 doReturn(Call.State.ACTIVE).when(mForegroundCall).getState();
257 doReturn(Call.State.ACTIVE).when(mForegroundCall)
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DGsmCdmaCallTracker.java83 public GsmCdmaCall mForegroundCall = new GsmCdmaCall(this); field in class:GsmCdmaCallTracker
124 toNotify.addAll(mForegroundCall.getConnections());
256 connCopy = (List<Connection>) mForegroundCall.mConnections.clone();
285 if (mForegroundCall.getState() == GsmCdmaCall.State.ACTIVE) {
307 if (mForegroundCall.getState() != GsmCdmaCall.State.IDLE) {
314 this, mForegroundCall, isEmergencyCall);
421 if (mForegroundCall.getState() == GsmCdmaCall.State.ACTIVE) {
426 this, mForegroundCall, isEmergencyCall);
468 if (!mForegroundCall.isIdle()) {
474 checkForTestEmergencyNumber(dialString), this, 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...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCallTracker.java169 + " fg = " + mForegroundCall.getState()
177 (isUnknown ? mForegroundCall : mRingingCall), isUnknown);
180 if (mForegroundCall.hasConnections()) {
181 ImsCall activeCall = mForegroundCall.getFirstConnection().getImsCall();
202 if ((mForegroundCall.getState() != ImsPhoneCall.State.IDLE)
291 public ImsPhoneCall mForegroundCall = new ImsPhoneCall(this, field in class:ImsPhoneCallTracker
819 mForegroundCall.dispose();
930 if (mForegroundCall.getState() == ImsPhoneCall.State.ACTIVE) {
950 fgState = mForegroundCall.getState();
965 checkForTestEmergencyNumber(dialString), this, mForegroundCall,
[all...]

Completed in 49 milliseconds