Home
last modified time | relevance | path

Searched refs:mImsCall (Results 1 – 6 of 6) sorted by relevance

/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
H A DImsPhoneConnectionTest.java160 assertTrue(mConnectionUT.update(mImsCall, Call.State.ACTIVE)); in testImsUpdateStateForeGround()
174 assertTrue(mConnectionUT.updateMediaCapabilities(mImsCall)); in testUpdateCodec()
183 assertFalse(mConnectionUT.update(mImsCall, Call.State.ACTIVE)); in testImsUpdateStateBackGround()
196 doReturn(true).when(mImsCall).isPendingHold(); in testImsUpdateStatePendingHold()
197 assertFalse(mConnectionUT.update(mImsCall, Call.State.ACTIVE)); in testImsUpdateStatePendingHold()
214 mConnectionUT.updateAddressDisplay(mImsCall); in testUpdateAddressDisplay()
252 assertTrue(mConnectionUT.update(mImsCall, Call.State.ACTIVE)); in testPostDialWait()
276 assertTrue(mConnectionUT.update(mImsCall, Call.State.ACTIVE)); in testPostDialPause()
298 assertTrue(mConnectionUT.update(mImsCall, Call.State.ACTIVE)); in testSetWifiDeprecated()
394 mConnectionUT.updateAddressDisplay(mImsCall); in testAddressUpdate()
[all …]
H A DImsPhoneCallTest.java138 mImsCallUT.update(null, mImsCall, Call.State.ACTIVE); in testUpdateRingBackTone()
159 mImsCallUT.maybeChangeRingbackState(mImsCall); in testUpdateRingBackToneBetweenStateChange()
184 mImsCallUT.maybeChangeRingbackState(mImsCall); in testUpdateRingBackToneBetweenStateChangeTwo()
189 mImsCallUT.maybeChangeRingbackState(mImsCall); in testUpdateRingBackToneBetweenStateChangeTwo()
237 doReturn(mImsCall).when(mConnection1).getImsCall(); in testMultiParty()
239 verify(mImsCall, times(0)).isMultiparty(); in testMultiParty()
244 verify(mImsCall, times(1)).isMultiparty(); in testMultiParty()
250 doReturn(mImsCall).when(mConnection1).getImsCall(); in testGetImsCall()
254 assertEquals(mImsCall, imsCall); in testGetImsCall()
260 doReturn(mImsCall).when(mConnection1).getImsCall(); in testSetMute()
[all …]
H A DImsPhoneCallTrackerTest.java121 private ImsCall mImsCall; field in ImsPhoneCallTrackerTest
205 imsCallMocking(mImsCall); in setUp()
222 return mImsCall; in setUp()
400 doReturn(true).when(mImsCall).isMultiparty(); in testImsCepOnPeer()
434 mImsCall.conferenceStateUpdated(state); in injectConferenceState()
447 verify(mImsCall).hold(); in testImsHoldException()
452 doNothing().when(mImsCall).hold(); in testImsHoldException()
455 verify(mImsCall, times(2)).hold(); in testImsHoldException()
521 verify(mImsCall, times(1)).hold(); in testImsMTCallAcceptHold()
559 verify(mImsCall, times(1)).hold(); in testImsMTActiveHoldServiceDisconnect()
[all …]
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneConnection.java82 private ImsCall mImsCall; field in ImsPhoneConnection
204 mImsCall = imsCall; in ImsPhoneConnection()
575 if (mImsCall != null) mImsCall.close(); in onDisconnect()
576 mImsCall = null; in onDisconnect()
783 return mImsCall != null && mImsCall.isMultiparty(); in isMultiparty()
796 return mImsCall != null && mImsCall.isConferenceHost(); in isConferenceHost()
805 return mImsCall; in getImsCall()
809 mImsCall = imsCall; in setImsCall()
1460 return mImsCall != null && mImsCall.isCrossSimCall(); in isCrossSimCall()
1593 if (mImsCall == null) { in sendRtpHeaderExtensions()
[all …]
/aosp12/packages/services/Telephony/tests/src/com/android/services/telephony/
H A DTestTelephonyConnection.java93 ImsCall mImsCall; field in TestTelephonyConnection
171 when(mImsPhoneConnection.getImsCall()).thenReturn(mImsCall); in TestTelephonyConnection()
265 when(mImsCall.wasVideoCall()).thenReturn(wasVideoCall); in setWasVideoCall()
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DTelephonyTest.java204 protected ImsCall mImsCall; field in TelephonyTest
643 doReturn(mImsCallProfile).when(mImsCall).getCallProfile(); in setUp()