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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmCallTracker.java86 GsmCall mBackgroundCall = new GsmCall(this); field in class:GsmCallTracker
324 && mBackgroundCall.getState() == GsmCall.State.HOLDING
325 && !mBackgroundCall.isFull()
341 || !mBackgroundCall.getState().isAlive());
351 && mBackgroundCall.getState() == GsmCall.State.HOLDING;
360 mBackgroundCall.clearDisconnected();
411 !(mForegroundCall.isIdle() && mBackgroundCall.isIdle())) {
701 Rlog.i(LOG_TAG,"Background call: " + mBackgroundCall.toString());
703 l = mBackgroundCall.getConnections();
794 } else if (call == mBackgroundCall) {
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaCallTracker.java83 CdmaCall mBackgroundCall = new CdmaCall(this); field in class:CdmaCallTracker
365 && mBackgroundCall.getState() == CdmaCall.State.HOLDING
366 && !mBackgroundCall.isFull()
383 || !mBackgroundCall.getState().isAlive());
401 !mBackgroundCall.getState().isAlive()));
418 mBackgroundCall.clearDisconnected();
472 !(mForegroundCall.isIdle() && mBackgroundCall.isIdle())) {
861 } else if (call == mBackgroundCall) {
1213 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 final ImsPhoneCall mBackgroundCall = new ImsPhoneCall(this, ImsPhoneCall.CONTEXT_BACKGROUND); field in class:ImsPhoneCallTracker
239 mBackgroundCall.dispose();
317 if (mBackgroundCall.getState() != ImsPhoneCall.State.IDLE) {
336 bgState = mBackgroundCall.getState();
440 && mBackgroundCall.getState().isAlive()) {
483 ", bg = " + mBackgroundCall.getState());
485 if (mBackgroundCall.getState() == ImsPhoneCall.State.HOLDING) {
487 mForegroundCall.switchWith(mBackgroundCall);
508 mCallExpectedToResume = mBackgroundCall
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java62 private SipCall mBackgroundCall = new SipCall(); field in class:SipPhone
73 mBackgroundCall = new SipCall();
111 && mBackgroundCall.getState().isAlive()) {
219 mForegroundCall.switchWith(mBackgroundCall);
220 if (mBackgroundCall.getState().isAlive()) mBackgroundCall.hold();
238 + mBackgroundCall.getState());
241 mForegroundCall.merge(mBackgroundCall);
270 mBackgroundCall.clearDisconnected();
358 : mBackgroundCall
[all...]

Completed in 32 milliseconds