Home
last modified time | relevance | path

Searched refs:ImsPhoneConnection (Results 1 – 18 of 18) sorted by relevance

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
DImsPhoneConnectionTest.java87 private ImsPhoneConnection mConnectionUT;
129 mConnectionUT = new ImsPhoneConnection(mImsPhone, mImsCall, mImsCT, mForeGroundCall, in testNullExtras()
140 mConnectionUT = new ImsPhoneConnection(mImsPhone, mImsCall, mImsCT, mForeGroundCall, false); in testImsIncomingConnectionCorrectness()
157 mConnectionUT = new ImsPhoneConnection(mImsPhone, String.format("+1 (700).555-41NN%c1234", in testImsIncomingConnectionCorrectness()
171 mConnectionUT = new ImsPhoneConnection(mImsPhone, "+1 (700).555-41NN1234", mImsCT, in testImsUpdateStateForeGround()
186 mConnectionUT = new ImsPhoneConnection(mImsPhone, "+1 (700).555-41NN1234", mImsCT, in testUpdateCodec()
196 mConnectionUT = new ImsPhoneConnection(mImsPhone, mImsCall, mImsCT, mBackGroundCall, false); in testImsUpdateStateBackGround()
209 mConnectionUT = new ImsPhoneConnection(mImsPhone, "+1 (700).555-41NN1234", mImsCT, in testImsUpdateStatePendingHold()
221 mConnectionUT = new ImsPhoneConnection(mImsPhone, mImsCall, mImsCT, mForeGroundCall, false); in testUpdateAddressDisplay()
254 mConnectionUT = new ImsPhoneConnection(mImsPhone, String.format("+1 (700).555-41NN%c1234", in testPostDialWait()
[all …]
DImsPhoneCallTrackerTest.java170 private ImsPhoneConnection.Listener mImsPhoneConnectionListener;
172 private ImsPhoneConnection mImsPhoneConnection;
235 mImsPhoneConnectionListener = mock(ImsPhoneConnection.Listener.class); in setUp()
236 mImsPhoneConnection = mock(ImsPhoneConnection.class); in setUp()
531 ImsPhoneConnection connection = setupRingingConnection(); in testImsMTCall()
539 ImsPhoneConnection connection = setupRingingConnection(); in testImsMTCallMissed()
548 ImsPhoneConnection connection = setupRingingConnection(); in testImsMTCallRejected()
558 ImsPhoneConnection connection = setupRingingConnection(); in testRejectedElsewhereIsRejected()
567 ImsPhoneConnection connection = setupRingingConnection(); in testRemoteCallDeclineIsRejected()
573 private ImsPhoneConnection setupRingingConnection() { in setupRingingConnection()
[all …]
DImsCallInfoTrackerTest.java69 ImsPhoneConnection c = getConnection(Call.State.DIALING, false); in testDialingNormalCall()
94 ImsPhoneConnection c = getConnection(Call.State.DIALING, true); in testDialingEmergencyCall()
119 ImsPhoneConnection c = getConnection(Call.State.INCOMING, false); in testIncomingCall()
212 ImsPhoneConnection c1 = getConnection(Call.State.INCOMING, false); in testMultiCalls()
235 ImsPhoneConnection c2 = getConnection(Call.State.WAITING, false); in testMultiCalls()
308 ImsPhoneConnection c = getConnection(Call.State.INCOMING, false); in testHeldByRemote()
370 ImsPhoneConnection c = getConnection(Call.State.DIALING, false); in testSrvccCompleted()
394 ImsPhoneConnection c = getConnection(Call.State.DIALING, false); in testClearAllOrphanedConnections()
420 private ImsPhoneConnection getConnection(Call.State state, boolean isEmergency) { in getConnection()
421 ImsPhoneConnection c = mock(ImsPhoneConnection.class); in getConnection()
DImsPhoneCallTest.java50 ImsPhoneConnection mConnection1;
51 ImsPhoneConnection mConnection2;
60 mConnection1 = mock(ImsPhoneConnection.class); in setUp()
61 mConnection2 = mock(ImsPhoneConnection.class); in setUp()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneCall.java197 public boolean connectionDisconnected(ImsPhoneConnection conn) { in connectionDisconnected()
226 public void detach(ImsPhoneConnection conn) { in detach()
254 ImsPhoneConnection imsConn = (ImsPhoneConnection) conn; in onHangupLocal()
268 public ImsPhoneConnection getFirstConnection() { in getFirstConnection()
272 return (ImsPhoneConnection) connections.get(0); in getFirstConnection()
281 ImsPhoneConnection connection = getFirstConnection(); in setMute()
298 ImsPhoneConnection imsPhoneConnection = getFirstConnection(); in merge()
328 ImsPhoneConnection connection = getFirstConnection(); in getImsCall()
382 public boolean update(ImsPhoneConnection conn, ImsCall imsCall, State state) { in update()
440 /* package */ ImsPhoneConnection
[all …]
DImsCallInfo.java32 private @Nullable ImsPhoneConnection mConnection = null;
52 public void update(@NonNull ImsPhoneConnection c) { in update()
64 public boolean update(@NonNull ImsPhoneConnection c, in update()
DImsPhoneCallTracker.java303 ImsPhoneConnection conn = new ImsPhoneConnection(mPhone, imsCall, in processIncomingCall()
424 ImsPhoneConnection conn = findConnection(imsCall); in onAudioModeIsVoipChanged()
550 for (ImsPhoneConnection conn : mConnections) { in onRequestStatsUpdate()
705 private ArrayList<ImsPhoneConnection> mConnections = new ArrayList<ImsPhoneConnection>();
759 private ImsPhoneConnection mPendingMO;
1515 for (ImsPhoneConnection connection : mConnections) { in hangupAllOrphanedConnections()
1677 ImsPhoneConnection pendingConnection; in startConference()
1680 pendingConnection = new ImsPhoneConnection(mPhone, in startConference()
1762 mPendingMO = new ImsPhoneConnection(mPhone, dialString, this, mForegroundCall, in dial()
2064 private void dialInternal(ImsPhoneConnection conn, int clirMode, int videoState, in dialInternal()
[all …]
DImsCallInfoTracker.java61 public void addImsCallStatus(@NonNull ImsPhoneConnection c) { in addImsCallStatus()
87 public void updateImsCallStatus(@NonNull ImsPhoneConnection c) { in updateImsCallStatus()
98 public void updateImsCallStatus(@NonNull ImsPhoneConnection c, in updateImsCallStatus()
DImsPhoneConnection.java71 public class ImsPhoneConnection extends Connection implements class
207 public ImsPhoneConnection(Phone phone, ImsCall imsCall, ImsPhoneCallTracker ct, in ImsPhoneConnection() method in ImsPhoneConnection
260 public ImsPhoneConnection(Phone phone, String dialString, ImsPhoneCallTracker ct, in ImsPhoneConnection() method in ImsPhoneConnection
310 public ImsPhoneConnection(Phone phone, String[] participantsToDial, ImsPhoneCallTracker ct, in ImsPhoneConnection() method in ImsPhoneConnection
498 mImsCall.consultativeTransfer(((ImsPhoneConnection) other).getImsCall()); in consultativeTransfer()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DSrvccConnection.java34 import com.android.internal.telephony.imsphone.ImsPhoneConnection;
85 ImsPhoneConnection c, @PreciseCallStates int preciseCallState) { in SrvccConnection()
147 private void initialize(ImsPhoneConnection c) { in initialize()
DCallManager.java32 import com.android.internal.telephony.imsphone.ImsPhoneConnection;
2069 && ((ImsPhoneConnection) c).isIncomingCallAutoRejected()) { in handleMessage()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
DVoiceCallSessionStats.java78 import com.android.internal.telephony.imsphone.ImsPhoneConnection;
252 public synchronized void onImsDial(ImsPhoneConnection conn) { in onImsDial()
260 public synchronized void onImsCallReceived(ImsPhoneConnection conn) { in onImsCallReceived()
276 @Nullable ImsPhoneConnection conn, ImsReasonInfo reasonInfo) { in onImsCallStartFailed()
282 @Nullable ImsPhoneConnection conn, ImsReasonInfo reasonInfo) { in onImsCallTerminated()
305 public synchronized void onRttStarted(ImsPhoneConnection conn) { in onRttStarted()
333 ImsPhoneConnection conn, @VideoState int videoState) { in onVideoStateChange()
347 public synchronized void onMultipartyChange(ImsPhoneConnection conn, boolean isMultiParty) { in onMultipartyChange()
595 private void setRttStarted(ImsPhoneConnection conn) { in setRttStarted()
941 if (conn instanceof ImsPhoneConnection) { in isCrossSimCall()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/emergency/
DEmergencyStateTracker.java68 import com.android.internal.telephony.imsphone.ImsPhoneConnection;
2053 && ((ImsPhoneConnection) c).isIncomingCallAutoRejected()) { in handleNewRingingConnection()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/metrics/
DVoiceCallSessionStatsTest.java81 import com.android.internal.telephony.imsphone.ImsPhoneConnection;
118 private ImsPhoneConnection mImsConnection0;
119 private ImsPhoneConnection mImsConnection1;
166 mImsConnection0 = mock(ImsPhoneConnection.class); in setUp()
167 mImsConnection1 = mock(ImsPhoneConnection.class); in setUp()
/frameworks/base/boot/
Dpreloaded-classes12503 com.android.internal.telephony.imsphone.ImsPhoneConnection$$ExternalSyntheticLambda0
12504 com.android.internal.telephony.imsphone.ImsPhoneConnection$MyHandler
12505 com.android.internal.telephony.imsphone.ImsPhoneConnection
Dboot-image-profile.txt34944 Lcom/android/internal/telephony/imsphone/ImsPhoneConnection$$ExternalSyntheticLambda0;
34945 Lcom/android/internal/telephony/imsphone/ImsPhoneConnection$MyHandler;
34946 Lcom/android/internal/telephony/imsphone/ImsPhoneConnection;
/frameworks/base/config/
Dpreloaded-classes12534 com.android.internal.telephony.imsphone.ImsPhoneConnection$$ExternalSyntheticLambda0
12535 com.android.internal.telephony.imsphone.ImsPhoneConnection$MyHandler
12536 com.android.internal.telephony.imsphone.ImsPhoneConnection
Dboot-image-profile.txt45105 Lcom/android/internal/telephony/imsphone/ImsPhoneConnection$$ExternalSyntheticLambda0;
45106 Lcom/android/internal/telephony/imsphone/ImsPhoneConnection$MyHandler;
45107 Lcom/android/internal/telephony/imsphone/ImsPhoneConnection;