Home
last modified time | relevance | path

Searched refs:ImsPhoneCall (Results 1 – 17 of 17) sorted by relevance

/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCall.java41 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 DImsPhoneCallTracker.java456 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 DImsPhoneConnection.java80 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 DImsPhone.java606 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 DImsPhoneCallTest.java53 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 DImsPhoneConnectionTest.java86 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 DImsPhoneTest.java103 private ImsPhoneCall mForegroundCall;
105 private ImsPhoneCall mBackgroundCall;
107 private ImsPhoneCall mRingingCall;
218 verify(mImsCT).hangup(any(ImsPhoneCall.class)); in testHandleInCallMmiCommandCallWaiting()
H A DImsPhoneCallTrackerTest.java515 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 DTelephonyTester.java39 import com.android.internal.telephony.imsphone.ImsPhoneCall;
322 ImsPhoneCall imsPhoneCall = imsPhone.getForegroundCall(); in handleTestConferenceEventPackage()
516 ImsPhoneCall imsPhoneCall = imsPhone.getForegroundCall(); in getImsCall()
H A DPhone.java85 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 DTelephonyConnection.java82 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 DVoiceCallSessionStatsTest.java63 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 DTelephonyMetrics.java90 import com.android.internal.telephony.imsphone.ImsPhoneCall;
2072 ImsPhoneCall.State callState) { in writeImsCallState()
/aosp12/frameworks/base/boot/
H A Dpreloaded-classes10059 com.android.internal.telephony.imsphone.ImsPhoneCall
H A Dboot-image-profile.txt34638 Lcom/android/internal/telephony/imsphone/ImsPhoneCall;
/aosp12/frameworks/base/config/
H A Dpreloaded-classes10080 com.android.internal.telephony.imsphone.ImsPhoneCall
H A Dboot-image-profile.txt44302 Lcom/android/internal/telephony/imsphone/ImsPhoneCall;