/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhoneCall.java | 40 public class ImsPhoneCall extends Call { class 67 ImsPhoneCall() { in ImsPhoneCall() method in ImsPhoneCall 71 public ImsPhoneCall(ImsPhoneCallTracker owner, String context) { in ImsPhoneCall() method in ImsPhoneCall 291 merge(ImsPhoneCall that, State state) { in merge() 381 public void switchWith(ImsPhoneCall that) { in switchWith() 385 synchronized (ImsPhoneCall.class) { in switchWith() 386 ImsPhoneCall tmp = new ImsPhoneCall(); in switchWith() 404 private void takeOver(ImsPhoneCall that) { in takeOver()
|
D | ImsPhoneCallTracker.java | 257 if ((mForegroundCall.getState() != ImsPhoneCall.State.IDLE) in onIncomingCall() 258 || (mBackgroundCall.getState() != ImsPhoneCall.State.IDLE)) { in onIncomingCall() 259 conn.update(imsCall, ImsPhoneCall.State.WAITING); in onIncomingCall() 425 public ImsPhoneCall mRingingCall = new ImsPhoneCall(this, ImsPhoneCall.CONTEXT_RINGING); 427 public ImsPhoneCall mForegroundCall = new ImsPhoneCall(this, 428 ImsPhoneCall.CONTEXT_FOREGROUND); 430 public ImsPhoneCall mBackgroundCall = new ImsPhoneCall(this, 431 ImsPhoneCall.CONTEXT_BACKGROUND); 433 public ImsPhoneCall mHandoverCall = new ImsPhoneCall(this, ImsPhoneCall.CONTEXT_HANDOVER); 1117 if (mForegroundCall.getState() == ImsPhoneCall.State.ACTIVE) { in prepareForDialing() [all …]
|
D | ImsPhoneConnection.java | 70 private ImsPhoneCall mParent; 180 ImsPhoneCall parent, boolean isUnknown) { in ImsPhoneConnection() 217 (mIsIncoming? ImsPhoneCall.State.INCOMING: ImsPhoneCall.State.DIALING)); in ImsPhoneConnection() 229 ImsPhoneCall parent, boolean isEmergency) { in ImsPhoneConnection() 252 parent.attachFake(this, ImsPhoneCall.State.DIALING); in ImsPhoneConnection() 269 ImsPhoneCall parent, boolean isEmergency) { in ImsPhoneConnection() 289 parent.attachFake(this, ImsPhoneCall.State.DIALING); in ImsPhoneConnection() 354 public ImsPhoneCall getCall() { in getCall() 370 if (getState() != ImsPhoneCall.State.HOLDING) { in getHoldDurationMillis() 404 public ImsPhoneCall.State getState() { in getState() [all …]
|
D | ImsPhone.java | 481 public ImsPhoneCall 488 public ImsPhoneCall 495 public ImsPhoneCall 528 if (getRingingCall().getState() != ImsPhoneCall.State.IDLE) { in handleCallDeflectionIncallSupplementaryService() 536 } else if (getBackgroundCall().getState() != ImsPhoneCall.State.IDLE) { in handleCallDeflectionIncallSupplementaryService() 594 ImsPhoneCall call = getForegroundCall(); in handleCallWaitingIncallSupplementaryService() 601 if (call.getState() != ImsPhoneCall.State.IDLE) { in handleCallWaitingIncallSupplementaryService() 629 if (getRingingCall().getState() != ImsPhoneCall.State.IDLE) { in handleCallHoldIncallSupplementaryService() 632 } else if (getBackgroundCall().getState() == ImsPhoneCall.State.HOLDING) { in handleCallHoldIncallSupplementaryService() 635 if (getForegroundCall().getState() != ImsPhoneCall.State.IDLE) { in handleCallHoldIncallSupplementaryService() [all …]
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/ |
D | ImsPhoneCallTest.java | 52 private ImsPhoneCall mImsCallUT; 59 mImsCallUT = new ImsPhoneCall(mImsCT, ImsPhoneCall.CONTEXT_FOREGROUND); in setUp() 164 ImsPhoneCall mImsCallThat = new ImsPhoneCall(mImsCT, ImsPhoneCall.CONTEXT_FOREGROUND); in testSwitchWith()
|
D | ImsPhoneConnectionTest.java | 71 private ImsPhoneCall mForeGroundCall; 73 private ImsPhoneCall mBackGroundCall; 75 private ImsPhoneCall mRingGroundCall; 87 doReturn(ImsPhoneCall.State.IDLE).when(mForeGroundCall).getState(); in setUp() 101 assertEquals(ImsPhoneCall.State.IDLE, mConnectionUT.getState()); in testImsIncomingConnectionCorrectness() 113 eq(ImsPhoneCall.State.INCOMING)); in testImsIncomingConnectionCorrectness() 122 eq(ImsPhoneCall.State.DIALING)); in testImsIncomingConnectionCorrectness()
|
D | ImsPhoneTest.java | 97 private ImsPhoneCall mForegroundCall; 99 private ImsPhoneCall mBackgroundCall; 101 private ImsPhoneCall mRingingCall; 210 verify(mImsCT).hangup(any(ImsPhoneCall.class)); in testHandleInCallMmiCommandCallWaiting()
|
D | ImsPhoneCallTrackerTest.java | 494 assertEquals(ImsPhoneCall.State.WAITING, mCTUT.mRingingCall.getState()); in testImsMTCallAcceptHold() 1078 when(mImsPhoneConnection.getState()).thenReturn(ImsPhoneCall.State.DISCONNECTED); in testNoHoldErrorMessageWhenCallDisconnected()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/vendor/ |
D | VendorPhoneSwitcher.java | 49 import com.android.internal.telephony.imsphone.ImsPhoneCall; 86 private final ImsPhoneCall[] mFgImsCalls; 87 private final ImsPhoneCall[] mBgImsCalls; 88 private final ImsPhoneCall[] mRiImsCalls; 112 mFgImsCalls = new ImsPhoneCall[mActiveModemCount]; in VendorPhoneSwitcher() 113 mBgImsCalls = new ImsPhoneCall[mActiveModemCount]; in VendorPhoneSwitcher() 114 mRiImsCalls = new ImsPhoneCall[mActiveModemCount]; in VendorPhoneSwitcher()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | TelephonyTester.java | 39 import com.android.internal.telephony.imsphone.ImsPhoneCall; 270 ImsPhoneCall imsPhoneCall = imsPhone.getForegroundCall(); in handleHandoverFailedIntent() 320 ImsPhoneCall imsPhoneCall = imsPhone.getForegroundCall(); in handleTestConferenceEventPackage() 499 ImsPhoneCall imsPhoneCall = imsPhone.getForegroundCall(); in testImsECall()
|
D | Phone.java | 80 import com.android.internal.telephony.imsphone.ImsPhoneCall; 2719 if (call instanceof ImsPhoneCall) { in isVideoCallOrConference() 2720 ImsPhoneCall imsPhoneCall = (ImsPhoneCall) call; in isVideoCallOrConference()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/metrics/ |
D | VoiceCallSessionStatsTest.java | 59 import com.android.internal.telephony.imsphone.ImsPhoneCall; 102 @Mock private ImsPhoneCall mImsCall0; 103 @Mock private ImsPhoneCall mImsCall1;
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/ |
D | TelephonyMetrics.java | 81 import com.android.internal.telephony.imsphone.ImsPhoneCall; 2009 ImsPhoneCall.State callState) { in writeImsCallState()
|
/frameworks/base/config/ |
D | preloaded-classes | 9083 com.android.internal.telephony.imsphone.ImsPhoneCall
|
D | boot-image-profile.txt | 49908 Lcom/android/internal/telephony/imsphone/ImsPhoneCall;
|