/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
H A D | ImsPhoneCall.java | 41 public class ImsPhoneCall extends Call { class 68 ImsPhoneCall() { in ImsPhoneCall() method in ImsPhoneCall 72 public ImsPhoneCall(ImsPhoneCallTracker owner, String context) { in ImsPhoneCall() method in ImsPhoneCall 292 merge(ImsPhoneCall that, State state) { in merge() 408 public void switchWith(ImsPhoneCall that) { in switchWith() 412 synchronized (ImsPhoneCall.class) { in switchWith() 413 ImsPhoneCall tmp = new ImsPhoneCall(); in switchWith() 435 private void takeOver(ImsPhoneCall that) { in takeOver()
|
H A D | ImsPhoneCallTracker.java | 456 public ImsPhoneCall mRingingCall = new ImsPhoneCall(this, ImsPhoneCall.CONTEXT_RINGING); 458 public ImsPhoneCall mForegroundCall = new ImsPhoneCall(this, 459 ImsPhoneCall.CONTEXT_FOREGROUND); 461 public ImsPhoneCall mBackgroundCall = new ImsPhoneCall(this, 462 ImsPhoneCall.CONTEXT_BACKGROUND); 464 public ImsPhoneCall mHandoverCall = new ImsPhoneCall(this, ImsPhoneCall.CONTEXT_HANDOVER); 1245 ImsPhoneCall.State fgState = ImsPhoneCall.State.IDLE; in prepareForDialing() 1246 ImsPhoneCall.State bgState = ImsPhoneCall.State.IDLE; in prepareForDialing() 1253 if (fgState == ImsPhoneCall.State.ACTIVE) { in prepareForDialing() 2591 if (state == ImsPhoneCall.State.DISCONNECTED) { in processCallStateChange() [all …]
|
H A D | ImsPhoneConnection.java | 80 private ImsPhoneCall mParent; 196 ImsPhoneCall parent, boolean isUnknown) { in ImsPhoneConnection() 233 (mIsIncoming? ImsPhoneCall.State.INCOMING: ImsPhoneCall.State.DIALING)); in ImsPhoneConnection() 287 ImsPhoneCall parent, boolean isEmergency) { in ImsPhoneConnection() 376 public ImsPhoneCall getCall() { in getCall() 392 if (getState() != ImsPhoneCall.State.HOLDING) { in getHoldDurationMillis() 426 public ImsPhoneCall.State getState() { in getState() 428 return ImsPhoneCall.State.DISCONNECTED; in getState() 812 public void changeParent(ImsPhoneCall parent) { in changeParent() 822 if (state == ImsPhoneCall.State.ACTIVE) { in update() [all …]
|
H A D | ImsPhone.java | 606 public ImsPhoneCall 613 public ImsPhoneCall 620 public ImsPhoneCall 653 if (getRingingCall().getState() != ImsPhoneCall.State.IDLE) { in handleCallDeflectionIncallSupplementaryService() 661 } else if (getBackgroundCall().getState() != ImsPhoneCall.State.IDLE) { in handleCallDeflectionIncallSupplementaryService() 719 ImsPhoneCall call = getForegroundCall(); in handleCallWaitingIncallSupplementaryService() 726 if (call.getState() != ImsPhoneCall.State.IDLE) { in handleCallWaitingIncallSupplementaryService() 754 if (getRingingCall().getState() != ImsPhoneCall.State.IDLE) { in handleCallHoldIncallSupplementaryService() 866 ImsPhoneCall.State foregroundCallState = getForegroundCall().getState(); in isInCall() 867 ImsPhoneCall.State backgroundCallState = getBackgroundCall().getState(); in isInCall() [all …]
|
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/ |
H A D | ImsPhoneCallTest.java | 53 private ImsPhoneCall mImsCallUT; 60 mImsCallUT = new ImsPhoneCall(mImsCT, ImsPhoneCall.CONTEXT_FOREGROUND); in setUp() 222 ImsPhoneCall mImsCallThat = new ImsPhoneCall(mImsCT, ImsPhoneCall.CONTEXT_FOREGROUND); in testSwitchWith()
|
H A D | ImsPhoneConnectionTest.java | 86 private ImsPhoneCall mForeGroundCall; 88 private ImsPhoneCall mBackGroundCall; 90 private ImsPhoneCall mRingGroundCall; 102 doReturn(ImsPhoneCall.State.IDLE).when(mForeGroundCall).getState(); in setUp() 128 assertEquals(ImsPhoneCall.State.IDLE, mConnectionUT.getState()); in testImsIncomingConnectionCorrectness() 140 eq(ImsPhoneCall.State.INCOMING)); in testImsIncomingConnectionCorrectness() 149 eq(ImsPhoneCall.State.DIALING)); in testImsIncomingConnectionCorrectness()
|
H A D | ImsPhoneTest.java | 103 private ImsPhoneCall mForegroundCall; 105 private ImsPhoneCall mBackgroundCall; 107 private ImsPhoneCall mRingingCall; 218 verify(mImsCT).hangup(any(ImsPhoneCall.class)); in testHandleInCallMmiCommandCallWaiting()
|
H A D | ImsPhoneCallTrackerTest.java | 515 assertEquals(ImsPhoneCall.State.WAITING, mCTUT.mRingingCall.getState()); in testImsMTCallAcceptHold() 553 assertEquals(ImsPhoneCall.State.WAITING, mCTUT.mRingingCall.getState()); in testImsMTActiveHoldServiceDisconnect() 1153 when(mImsPhoneConnection.getState()).thenReturn(ImsPhoneCall.State.DISCONNECTED); in testNoHoldErrorMessageWhenCallDisconnected()
|
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
H A D | TelephonyTester.java | 39 import com.android.internal.telephony.imsphone.ImsPhoneCall; 322 ImsPhoneCall imsPhoneCall = imsPhone.getForegroundCall(); in handleTestConferenceEventPackage() 516 ImsPhoneCall imsPhoneCall = imsPhone.getForegroundCall(); in getImsCall()
|
H A D | Phone.java | 85 import com.android.internal.telephony.imsphone.ImsPhoneCall; 2955 if (call instanceof ImsPhoneCall) { in isVideoCallOrConference() 2956 ImsPhoneCall imsPhoneCall = (ImsPhoneCall) call; in isVideoCallOrConference()
|
/aosp12/packages/services/Telephony/src/com/android/services/telephony/ |
H A D | TelephonyConnection.java | 82 import com.android.internal.telephony.imsphone.ImsPhoneCall; 1389 if (mOriginalConnection.getCall() instanceof ImsPhoneCall) { in performAddConferenceParticipants() 1390 ImsPhoneCall imsPhoneCall = (ImsPhoneCall)mOriginalConnection.getCall(); in performAddConferenceParticipants() 1847 ImsPhoneCall foregroundCall = ((ImsPhone) phone).getForegroundCall(); in shouldSetDisableAddCallExtra()
|
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/metrics/ |
H A D | VoiceCallSessionStatsTest.java | 63 import com.android.internal.telephony.imsphone.ImsPhoneCall; 106 @Mock private ImsPhoneCall mImsCall0; 107 @Mock private ImsPhoneCall mImsCall1;
|
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/ |
H A D | TelephonyMetrics.java | 90 import com.android.internal.telephony.imsphone.ImsPhoneCall; 2072 ImsPhoneCall.State callState) { in writeImsCallState()
|
/aosp12/frameworks/base/boot/ |
H A D | preloaded-classes | 10059 com.android.internal.telephony.imsphone.ImsPhoneCall
|
H A D | boot-image-profile.txt | 34638 Lcom/android/internal/telephony/imsphone/ImsPhoneCall;
|
/aosp12/frameworks/base/config/ |
H A D | preloaded-classes | 10080 com.android.internal.telephony.imsphone.ImsPhoneCall
|
H A D | boot-image-profile.txt | 44302 Lcom/android/internal/telephony/imsphone/ImsPhoneCall;
|