Home
last modified time | relevance | path

Searched refs:ImsCallProfile (Results 1 – 25 of 47) sorted by relevance

12

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ims/
DImsCallProfileTest.java29 import android.telephony.ims.ImsCallProfile;
81 ImsCallProfile data = new ImsCallProfile(); in testCallComposerExtras()
84 data.setCallExtraInt(ImsCallProfile.EXTRA_PRIORITY, in testCallComposerExtras()
85 ImsCallProfile.PRIORITY_URGENT); in testCallComposerExtras()
86 assertEquals(ImsCallProfile.PRIORITY_URGENT, in testCallComposerExtras()
87 data.getCallExtraInt(ImsCallProfile.EXTRA_PRIORITY)); in testCallComposerExtras()
88 data.setCallExtraInt(ImsCallProfile.EXTRA_PRIORITY, in testCallComposerExtras()
89 ImsCallProfile.PRIORITY_NORMAL); in testCallComposerExtras()
90 assertEquals(ImsCallProfile.PRIORITY_NORMAL, in testCallComposerExtras()
91 data.getCallExtraInt(ImsCallProfile.EXTRA_PRIORITY)); in testCallComposerExtras()
[all …]
/frameworks/base/telephony/java/android/telephony/ims/aidl/
DIImsCallSessionListener.aidl21 import android.telephony.ims.ImsCallProfile;
40 void callSessionInitiating(in ImsCallProfile profile); in callSessionInitiating()
43 void callSessionInitiated(in ImsCallProfile profile); in callSessionInitiated()
50 void callSessionHeld(in ImsCallProfile profile); in callSessionHeld()
52 void callSessionHoldReceived(in ImsCallProfile profile); in callSessionHoldReceived()
53 void callSessionResumed(in ImsCallProfile profile); in callSessionResumed()
55 void callSessionResumeReceived(in ImsCallProfile profile); in callSessionResumeReceived()
60 void callSessionMergeStarted(IImsCallSession newSession, in ImsCallProfile profile); in callSessionMergeStarted()
67 void callSessionUpdated(in ImsCallProfile profile); in callSessionUpdated()
69 void callSessionUpdateReceived(in ImsCallProfile profile); in callSessionUpdateReceived()
[all …]
DIImsMmTelListener.aidl21 import android.telephony.ims.ImsCallProfile;
35 void onRejectedCall(in ImsCallProfile callProfile, in ImsReasonInfo reason); in onRejectedCall()
DIImsMmTelFeature.aidl26 import android.telephony.ims.ImsCallProfile;
42 ImsCallProfile createCallProfile(int callSessionType, int callType); in createCallProfile()
44 IImsCallSession createCallSession(in ImsCallProfile profile); in createCallSession()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
DImsCallTest.java32 import android.telephony.ims.ImsCallProfile;
48 private ImsCallProfile mTestCallProfile;
53 mTestCallProfile = new ImsCallProfile(); in setUp()
67 ImsCallProfile profile = new ImsCallProfile(); in testCallSessionProgressingAppliedMediaCaps()
99 mBundle.putString(ImsCallProfile.EXTRA_CALL_RAT_TYPE, in testSetWifiDeprecated()
116 ImsCallProfile profile = new ImsCallProfile(); in testNonNulllVideoProfile()
117 profile.mCallType = ImsCallProfile.CALL_TYPE_VT_TX; in testNonNulllVideoProfile()
127 ImsCallProfile profile = new ImsCallProfile(); in testNullCallProfileAfterNonNull()
128 profile.mCallType = ImsCallProfile.CALL_TYPE_VT_TX; in testNullCallProfileAfterNonNull()
144 mBundle.putInt(ImsCallProfile.EXTRA_CALL_NETWORK_TYPE, in testSetWifi()
[all …]
DImsPhoneConnectionTest.java47 import android.telephony.ims.ImsCallProfile;
209 mImsCallProfile.setCallExtraInt(ImsCallProfile.EXTRA_CNAP, in testUpdateAddressDisplay()
210 ImsCallProfile.OIR_PRESENTATION_PAYPHONE); in testUpdateAddressDisplay()
211 mImsCallProfile.setCallExtraInt(ImsCallProfile.EXTRA_OIR, in testUpdateAddressDisplay()
212 ImsCallProfile.OIR_PRESENTATION_NOT_RESTRICTED); in testUpdateAddressDisplay()
215 assertEquals(ImsCallProfile.OIRToPresentation(ImsCallProfile.OIR_PRESENTATION_PAYPHONE), in testUpdateAddressDisplay()
217 assertEquals(ImsCallProfile.OIRToPresentation( in testUpdateAddressDisplay()
218 ImsCallProfile.OIR_PRESENTATION_NOT_RESTRICTED), in testUpdateAddressDisplay()
296 mBundle.putString(ImsCallProfile.EXTRA_CALL_RAT_TYPE, in testSetWifiDeprecated()
309 mBundle.putString(ImsCallProfile.EXTRA_CALL_NETWORK_TYPE, in testSetWifi()
[all …]
DImsPhoneCallTrackerTest.java68 import android.telephony.ims.ImsCallProfile;
359 ImsCallProfile.VERIFICATION_STATUS_PASSED); in testImsMTCall()
382 mCTUT.acceptCall(ImsCallProfile.CALL_TYPE_VOICE); in testImsMTCallAccept()
383 verify(mImsCall, times(1)).accept(eq(ImsCallProfile in testImsMTCallAccept()
384 .getCallTypeFromVideoState(ImsCallProfile.CALL_TYPE_VOICE))); in testImsMTCallAccept()
520 mCTUT.acceptCall(ImsCallProfile.CALL_TYPE_VOICE); in testImsMTCallAcceptHold()
558 mCTUT.acceptCall(ImsCallProfile.CALL_TYPE_VOICE); in testImsMTActiveHoldServiceDisconnect()
628 ArgumentCaptor<ImsCallProfile> profileCaptor = ArgumentCaptor.forClass( in testEmergencyDialSuppressClir()
629 ImsCallProfile.class); in testEmergencyDialSuppressClir()
634 assertEquals(mImsCallProfile.getCallExtraInt(ImsCallProfile.EXTRA_OIR), in testEmergencyDialSuppressClir()
[all …]
DImsExternalCallTrackerTest.java24 import android.telephony.ims.ImsCallProfile;
74 ImsCallProfile.CALL_TYPE_VOICE, in testAddExternalCall()
/frameworks/base/telephony/java/android/telephony/ims/
DImsCallProfile.java58 public final class ImsCallProfile implements Parcelable { class
597 public ImsCallProfile(Parcel in) { in ImsCallProfile() method in ImsCallProfile
605 public ImsCallProfile() { in ImsCallProfile() method in ImsCallProfile
631 public ImsCallProfile(int serviceType, int callType) { in ImsCallProfile() method in ImsCallProfile
659 public ImsCallProfile(int serviceType, int callType, Bundle callExtras, in ImsCallProfile() method in ImsCallProfile
757 public void updateCallType(ImsCallProfile profile) { in updateCallType()
761 public void updateCallExtras(ImsCallProfile profile) { in updateCallExtras()
771 public void updateMediaProfile(ImsCallProfile profile) { in updateMediaProfile()
855 public static final @android.annotation.NonNull Creator<ImsCallProfile> CREATOR =
856 new Creator<ImsCallProfile>() {
[all …]
DImsCallSession.java109 ImsCallProfile profile) { in callSessionInitiating()
139 ImsCallProfile profile) { in callSessionStarted()
169 ImsCallProfile profile) { in callSessionHeld()
188 ImsCallProfile profile) { in callSessionHoldReceived()
197 ImsCallProfile profile) { in callSessionResumed()
216 ImsCallProfile profile) { in callSessionResumeReceived()
228 ImsCallSession newSession, ImsCallProfile profile) { in callSessionMergeStarted()
255 ImsCallProfile profile) { in callSessionUpdated()
274 ImsCallProfile profile) { in callSessionUpdateReceived()
286 ImsCallSession newSession, ImsCallProfile profile) { in callSessionConferenceExtended()
[all …]
DImsCallSessionListener.java68 public void callSessionInitiating(@NonNull ImsCallProfile profile) { in callSessionInitiating()
110 public void callSessionInitiated(ImsCallProfile profile) { in callSessionInitiated()
159 public void callSessionHeld(ImsCallProfile profile) { in callSessionHeld()
185 public void callSessionHoldReceived(ImsCallProfile profile) { in callSessionHoldReceived()
199 public void callSessionResumed(ImsCallProfile profile) { in callSessionResumed()
226 public void callSessionResumeReceived(ImsCallProfile profile) { in callSessionResumeReceived()
243 public void callSessionMergeStarted(ImsCallSessionImplBase newSession, ImsCallProfile profile) in callSessionMergeStarted()
259 public void callSessionMergeStarted(IImsCallSession newSession, ImsCallProfile profile) in callSessionMergeStarted()
317 public void callSessionUpdated(ImsCallProfile profile) { in callSessionUpdated()
343 public void callSessionUpdateReceived(ImsCallProfile profile) { in callSessionUpdateReceived()
[all …]
DImsExternalCallState.java62 ImsCallProfile.CALL_TYPE_VOICE,
63 ImsCallProfile.CALL_TYPE_VT_TX,
64 ImsCallProfile.CALL_TYPE_VT_RX,
65 ImsCallProfile.CALL_TYPE_VT
DImsCallProfile.aidl19 parcelable ImsCallProfile;
/frameworks/base/telephony/java/android/telephony/ims/compat/stub/
DImsCallSessionImplBase.java27 import android.telephony.ims.ImsCallProfile;
95 public ImsCallProfile getCallProfile() { in getCallProfile()
104 public ImsCallProfile getLocalCallProfile() { in getLocalCallProfile()
113 public ImsCallProfile getRemoteCallProfile() { in getRemoteCallProfile()
165 public void start(String callee, ImsCallProfile profile) { in start()
182 public void startConference(String[] participants, ImsCallProfile profile) { in startConference()
391 public void sendRttModifyRequest(ImsCallProfile toProfile) { in sendRttModifyRequest()
441 public void callSessionStarted(IImsCallSession i, ImsCallProfile imsCallProfile) in callSessionStarted()
459 public void callSessionHeld(IImsCallSession i, ImsCallProfile imsCallProfile) in callSessionHeld()
471 public void callSessionHoldReceived(IImsCallSession i, ImsCallProfile imsCallProfile) in callSessionHoldReceived()
[all …]
/frameworks/base/telephony/java/com/android/ims/internal/
DIImsCallSessionListener.aidl21 import android.telephony.ims.ImsCallProfile;
40 void callSessionStarted(in IImsCallSession session, in ImsCallProfile profile); in callSessionStarted()
50 void callSessionHeld(in IImsCallSession session, in ImsCallProfile profile); in callSessionHeld()
54 void callSessionHoldReceived(in IImsCallSession session, in ImsCallProfile profile); in callSessionHoldReceived()
56 void callSessionResumed(in IImsCallSession session, in ImsCallProfile profile); in callSessionResumed()
60 void callSessionResumeReceived(in IImsCallSession session, in ImsCallProfile profile); in callSessionResumeReceived()
67 in IImsCallSession newSession, in ImsCallProfile profile); in callSessionMergeStarted()
79 in ImsCallProfile profile); in callSessionUpdated()
83 in ImsCallProfile profile); in callSessionUpdateReceived()
89 in IImsCallSession newSession, in ImsCallProfile profile); in callSessionConferenceExtended()
[all …]
DIImsCallSession.aidl21 import android.telephony.ims.ImsCallProfile;
50 ImsCallProfile getCallProfile(); in getCallProfile()
57 ImsCallProfile getLocalCallProfile(); in getLocalCallProfile()
64 ImsCallProfile getRemoteCallProfile(); in getRemoteCallProfile()
115 void start(String callee, in ImsCallProfile profile); in start()
128 void startConference(in String[] participants, in ImsCallProfile profile); in startConference()
288 void sendRttModifyRequest(in ImsCallProfile toProfile); in sendRttModifyRequest()
DIImsMMTelFeature.aidl21 import android.telephony.ims.ImsCallProfile;
44 ImsCallProfile createCallProfile(int sessionId, int callSessionType, int callType); in createCallProfile()
45 IImsCallSession createCallSession(int sessionId, in ImsCallProfile profile); in createCallSession()
DIImsService.aidl21 import android.telephony.ims.ImsCallProfile;
54 ImsCallProfile createCallProfile(int serviceId, int serviceType, int callType); in createCallProfile()
56 IImsCallSession createCallSession(int serviceId, in ImsCallProfile profile, in createCallSession()
/frameworks/base/telephony/java/android/telephony/ims/stub/
DImsCallSessionImplBase.java23 import android.telephony.ims.ImsCallProfile;
126 public ImsCallProfile getCallProfile() {
131 public ImsCallProfile getLocalCallProfile() {
136 public ImsCallProfile getRemoteCallProfile() {
166 public void start(String callee, ImsCallProfile profile) {
171 public void startConference(String[] participants, ImsCallProfile profile) throws
274 public void sendRttModifyRequest(ImsCallProfile toProfile) {
332 public ImsCallProfile getCallProfile() { in getCallProfile()
340 public ImsCallProfile getLocalCallProfile() { in getLocalCallProfile()
348 public ImsCallProfile getRemoteCallProfile() { in getRemoteCallProfile()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneConnection.java42 import android.telephony.ims.ImsCallProfile;
208 mAddress = imsCall.getCallProfile().getCallExtra(ImsCallProfile.EXTRA_OI); in ImsPhoneConnection()
209 mCnapName = imsCall.getCallProfile().getCallExtra(ImsCallProfile.EXTRA_CNA); in ImsPhoneConnection()
210 mNumberPresentation = ImsCallProfile.OIRToPresentation( in ImsPhoneConnection()
211 imsCall.getCallProfile().getCallExtraInt(ImsCallProfile.EXTRA_OIR)); in ImsPhoneConnection()
212 mCnapNamePresentation = ImsCallProfile.OIRToPresentation( in ImsPhoneConnection()
213 imsCall.getCallProfile().getCallExtraInt(ImsCallProfile.EXTRA_CNAP)); in ImsPhoneConnection()
333 private int applyLocalCallCapabilities(ImsCallProfile localProfile, int capabilities) { in applyLocalCallCapabilities()
343 case ImsCallProfile.CALL_TYPE_VT: in applyLocalCallCapabilities()
345 case ImsCallProfile.CALL_TYPE_VIDEO_N_VOICE: in applyLocalCallCapabilities()
[all …]
/frameworks/base/telephony/java/android/telephony/ims/compat/feature/
DMMTelFeature.java24 import android.telephony.ims.ImsCallProfile;
112 public ImsCallProfile createCallProfile(int sessionId, int callSessionType, int callType)
120 public IImsCallSession createCallSession(int sessionId, ImsCallProfile profile)
285 public ImsCallProfile createCallProfile(int sessionId, int callSessionType, int callType) { in createCallProfile()
297 public IImsCallSession createCallSession(int sessionId, ImsCallProfile profile, in createCallSession()
/frameworks/opt/net/ims/src/java/com/android/ims/
DImsCall.java33 import android.telephony.ims.ImsCallProfile;
580 private ImsCallProfile mCallProfile = null;
584 private ImsCallProfile mProposedCallProfile = null;
681 public ImsCall(Context context, ImsCallProfile profile) { in ImsCall()
719 return userId.equals(mCallProfile.getCallExtra(ImsCallProfile.EXTRA_REMOTE_URI, "")); in checkIfRemoteUserIsSame()
750 public ImsCallProfile getCallProfile() { in getCallProfile()
763 public void setCallProfile(ImsCallProfile profile) { in setCallProfile()
775 public ImsCallProfile getLocalCallProfile() throws ImsException { in getLocalCallProfile()
796 public ImsCallProfile getRemoteCallProfile() throws ImsException { in getRemoteCallProfile()
817 public ImsCallProfile getProposedCallProfile() { in getProposedCallProfile()
[all …]
/frameworks/base/telephony/java/android/telephony/ims/feature/
DMmTelFeature.java27 import android.telephony.ims.ImsCallProfile;
89 public ImsCallProfile createCallProfile(int callSessionType, int callType)
113 public IImsCallSession createCallSession(ImsCallProfile profile) throws RemoteException {
383 public void onRejectedCall(ImsCallProfile callProfile, ImsReasonInfo reason) { in onRejectedCall()
538 public final void notifyRejectedCall(@NonNull ImsCallProfile callProfile, in notifyRejectedCall()
646 public @Nullable ImsCallProfile createCallProfile(int callSessionType, int callType) { in createCallProfile()
672 public IImsCallSession createCallSessionInterface(ImsCallProfile profile) in createCallSessionInterface()
687 public @Nullable ImsCallSessionImplBase createCallSession(@NonNull ImsCallProfile profile) { in createCallSession()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/
DMmTelInterfaceAdapter.java23 import android.telephony.ims.ImsCallProfile;
78 public ImsCallProfile createCallProfile(int sessionId, int callSessionType, int callType) in createCallProfile()
83 public IImsCallSession createCallSession(int sessionId, ImsCallProfile profile) in createCallSession()
/frameworks/opt/telephony/tests/telephonytests/src/android/telephony/ims/
DTestMmTelFeature.java64 public ImsCallProfile createCallProfile(int callSessionType, int callType) { in createCallProfile()
75 public ImsCallSessionImplBase createCallSession(ImsCallProfile profile) { in createCallSession()

12