/frameworks/base/telephony/java/android/telephony/ims/aidl/ |
D | IImsCallSessionListener.aidl | 21 import android.telephony.ims.ImsCallProfile; 38 void callSessionInitiated(in ImsCallProfile profile); in callSessionInitiated() 45 void callSessionHeld(in ImsCallProfile profile); in callSessionHeld() 47 void callSessionHoldReceived(in ImsCallProfile profile); in callSessionHoldReceived() 48 void callSessionResumed(in ImsCallProfile profile); in callSessionResumed() 50 void callSessionResumeReceived(in ImsCallProfile profile); in callSessionResumeReceived() 55 void callSessionMergeStarted(IImsCallSession newSession, in ImsCallProfile profile); in callSessionMergeStarted() 62 void callSessionUpdated(in ImsCallProfile profile); in callSessionUpdated() 64 void callSessionUpdateReceived(in ImsCallProfile profile); in callSessionUpdateReceived() 69 void callSessionConferenceExtended(IImsCallSession newSession, in ImsCallProfile profile); in callSessionConferenceExtended() [all …]
|
D | IImsMmTelListener.aidl | 21 import android.telephony.ims.ImsCallProfile; 32 void onRejectedCall(in ImsCallProfile callProfile, in ImsReasonInfo reason); in onRejectedCall()
|
D | IImsMmTelFeature.aidl | 25 import android.telephony.ims.ImsCallProfile; 39 ImsCallProfile createCallProfile(int callSessionType, int callType); in createCallProfile() 40 IImsCallSession createCallSession(in ImsCallProfile profile); in createCallSession()
|
/frameworks/base/telephony/java/android/telephony/ims/ |
D | ImsCallProfile.java | 48 public final class ImsCallProfile implements Parcelable { class 392 public ImsCallProfile(Parcel in) { in ImsCallProfile() method in ImsCallProfile 400 public ImsCallProfile() { in ImsCallProfile() method in ImsCallProfile 426 public ImsCallProfile(int serviceType, int callType) { in ImsCallProfile() method in ImsCallProfile 454 public ImsCallProfile(int serviceType, int callType, Bundle callExtras, in ImsCallProfile() method in ImsCallProfile 524 public void updateCallType(ImsCallProfile profile) { in updateCallType() 528 public void updateCallExtras(ImsCallProfile profile) { in updateCallExtras() 538 public void updateMediaProfile(ImsCallProfile profile) { in updateMediaProfile() 587 … static final @android.annotation.NonNull Creator<ImsCallProfile> CREATOR = new Creator<ImsCallPro… 589 public ImsCallProfile createFromParcel(Parcel in) { [all …]
|
D | ImsCallSession.java | 115 ImsCallProfile profile) { in callSessionStarted() 145 ImsCallProfile profile) { in callSessionHeld() 164 ImsCallProfile profile) { in callSessionHoldReceived() 173 ImsCallProfile profile) { in callSessionResumed() 192 ImsCallProfile profile) { in callSessionResumeReceived() 204 ImsCallSession newSession, ImsCallProfile profile) { in callSessionMergeStarted() 231 ImsCallProfile profile) { in callSessionUpdated() 250 ImsCallProfile profile) { in callSessionUpdateReceived() 262 ImsCallSession newSession, ImsCallProfile profile) { in callSessionConferenceExtended() 281 ImsCallSession newSession, ImsCallProfile profile) { in callSessionConferenceExtendReceived() [all …]
|
D | ImsCallSessionListener.java | 65 public void callSessionInitiated(ImsCallProfile profile) { in callSessionInitiated() 109 public void callSessionHeld(ImsCallProfile profile) { in callSessionHeld() 135 public void callSessionHoldReceived(ImsCallProfile profile) { in callSessionHoldReceived() 149 public void callSessionResumed(ImsCallProfile profile) { in callSessionResumed() 176 public void callSessionResumeReceived(ImsCallProfile profile) { in callSessionResumeReceived() 193 public void callSessionMergeStarted(ImsCallSessionImplBase newSession, ImsCallProfile profile) in callSessionMergeStarted() 209 public void callSessionMergeStarted(IImsCallSession newSession, ImsCallProfile profile) in callSessionMergeStarted() 267 public void callSessionUpdated(ImsCallProfile profile) { in callSessionUpdated() 293 public void callSessionUpdateReceived(ImsCallProfile profile) { in callSessionUpdateReceived() 312 ImsCallProfile profile) { in callSessionConferenceExtended() [all …]
|
D | ImsExternalCallState.java | 64 ImsCallProfile.CALL_TYPE_VOICE, 65 ImsCallProfile.CALL_TYPE_VT_TX, 66 ImsCallProfile.CALL_TYPE_VT_RX, 67 ImsCallProfile.CALL_TYPE_VT
|
/frameworks/base/telephony/java/com/android/ims/internal/ |
D | IImsCallSessionListener.aidl | 21 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 …]
|
D | IImsCallSession.aidl | 22 import android.telephony.ims.ImsCallProfile; 49 ImsCallProfile getCallProfile(); in getCallProfile() 56 ImsCallProfile getLocalCallProfile(); in getLocalCallProfile() 63 ImsCallProfile getRemoteCallProfile(); in getRemoteCallProfile() 114 void start(String callee, in ImsCallProfile profile); in start() 127 void startConference(in String[] participants, in ImsCallProfile profile); in startConference() 271 void sendRttModifyRequest(in ImsCallProfile toProfile); in sendRttModifyRequest()
|
D | IImsMMTelFeature.aidl | 21 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()
|
D | IImsService.aidl | 21 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/compat/stub/ |
D | ImsCallSessionImplBase.java | 22 import android.telephony.ims.ImsCallProfile; 83 public ImsCallProfile getCallProfile() { in getCallProfile() 92 public ImsCallProfile getLocalCallProfile() { in getLocalCallProfile() 101 public ImsCallProfile getRemoteCallProfile() { in getRemoteCallProfile() 153 public void start(String callee, ImsCallProfile profile) { in start() 170 public void startConference(String[] participants, ImsCallProfile profile) { in startConference() 356 public void sendRttModifyRequest(ImsCallProfile toProfile) { in sendRttModifyRequest() 397 public void callSessionStarted(IImsCallSession i, ImsCallProfile imsCallProfile) in callSessionStarted() 415 public void callSessionHeld(IImsCallSession i, ImsCallProfile imsCallProfile) in callSessionHeld() 427 public void callSessionHoldReceived(IImsCallSession i, ImsCallProfile imsCallProfile) in callSessionHoldReceived() [all …]
|
/frameworks/base/telephony/java/android/telephony/ims/stub/ |
D | ImsCallSessionImplBase.java | 25 import android.telephony.ims.ImsCallProfile; 119 public ImsCallProfile getCallProfile() { 124 public ImsCallProfile getLocalCallProfile() { 129 public ImsCallProfile getRemoteCallProfile() { 159 public void start(String callee, ImsCallProfile profile) { 164 public void startConference(String[] participants, ImsCallProfile profile) throws 255 public void sendRttModifyRequest(ImsCallProfile toProfile) { 307 public ImsCallProfile getCallProfile() { in getCallProfile() 315 public ImsCallProfile getLocalCallProfile() { in getLocalCallProfile() 323 public ImsCallProfile getRemoteCallProfile() { in getRemoteCallProfile() [all …]
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/ |
D | ImsCallTest.java | 24 import android.telephony.ims.ImsCallProfile; 41 private ImsCallProfile mTestCallProfile; 46 mTestCallProfile = new ImsCallProfile(); in setUp() 61 mBundle.putString(ImsCallProfile.EXTRA_CALL_RAT_TYPE, in testSetWifi() 73 mBundle.putString(ImsCallProfile.EXTRA_CALL_RAT_TYPE_ALT, in testSetWifiAlt() 85 mBundle.putString(ImsCallProfile.EXTRA_CALL_RAT_TYPE, in testSetLteNoWifi() 97 mBundle.putString(ImsCallProfile.EXTRA_CALL_RAT_TYPE_ALT, in testSetLteNoWifiAlt()
|
D | ImsPhoneConnectionTest.java | 26 import android.telephony.ims.ImsCallProfile; 163 mImsCallProfile.setCallExtraInt(ImsCallProfile.EXTRA_CNAP, in testUpdateAddressDisplay() 164 ImsCallProfile.OIR_PRESENTATION_PAYPHONE); in testUpdateAddressDisplay() 165 mImsCallProfile.setCallExtraInt(ImsCallProfile.EXTRA_OIR, in testUpdateAddressDisplay() 166 ImsCallProfile.OIR_PRESENTATION_NOT_RESTRICTED); in testUpdateAddressDisplay() 169 assertEquals(ImsCallProfile.OIRToPresentation(ImsCallProfile.OIR_PRESENTATION_PAYPHONE), in testUpdateAddressDisplay() 171 assertEquals(ImsCallProfile.OIRToPresentation( in testUpdateAddressDisplay() 172 ImsCallProfile.OIR_PRESENTATION_NOT_RESTRICTED), in testUpdateAddressDisplay() 248 mBundle.putString(ImsCallProfile.EXTRA_CALL_RAT_TYPE, in testSetWifi() 263 mBundle.putString(ImsCallProfile.EXTRA_CALL_RAT_TYPE_ALT, in testSetWifi2() [all …]
|
D | ImsPhoneCallTrackerTest.java | 53 import android.telephony.ims.ImsCallProfile; 373 mCTUT.acceptCall(ImsCallProfile.CALL_TYPE_VOICE); in testImsMTCallAccept() 374 verify(mImsCall, times(1)).accept(eq(ImsCallProfile in testImsMTCallAccept() 375 .getCallTypeFromVideoState(ImsCallProfile.CALL_TYPE_VOICE))); in testImsMTCallAccept() 444 mCTUT.acceptCall(ImsCallProfile.CALL_TYPE_VOICE); in testImsMTCallAcceptHold() 504 ArgumentCaptor<ImsCallProfile> profileCaptor = ArgumentCaptor.forClass( in testEmergencyDialSuppressClir() 505 ImsCallProfile.class); in testEmergencyDialSuppressClir() 510 assertEquals(mImsCallProfile.getCallExtraInt(ImsCallProfile.EXTRA_OIR), in testEmergencyDialSuppressClir() 537 mCTUT.dial("+17005554141", ImsCallProfile.CALL_TYPE_VOICE, null); in startOutgoingCall() 561 mCTUT.dial("+17005554141", ImsCallProfile.CALL_TYPE_VOICE, null); in testImsMTActiveMODial() [all …]
|
D | ImsExternalCallTrackerTest.java | 24 import android.telephony.ims.ImsCallProfile; 74 ImsCallProfile.CALL_TYPE_VOICE, in testAddExternalCall()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhoneConnection.java | 38 import android.telephony.ims.ImsCallProfile; 189 mAddress = imsCall.getCallProfile().getCallExtra(ImsCallProfile.EXTRA_OI); in ImsPhoneConnection() 190 mCnapName = imsCall.getCallProfile().getCallExtra(ImsCallProfile.EXTRA_CNA); in ImsPhoneConnection() 191 mNumberPresentation = ImsCallProfile.OIRToPresentation( in ImsPhoneConnection() 192 imsCall.getCallProfile().getCallExtraInt(ImsCallProfile.EXTRA_OIR)); in ImsPhoneConnection() 193 mCnapNamePresentation = ImsCallProfile.OIRToPresentation( in ImsPhoneConnection() 194 imsCall.getCallProfile().getCallExtraInt(ImsCallProfile.EXTRA_CNAP)); in ImsPhoneConnection() 275 private int applyLocalCallCapabilities(ImsCallProfile localProfile, int capabilities) { in applyLocalCallCapabilities() 285 case ImsCallProfile.CALL_TYPE_VT: in applyLocalCallCapabilities() 287 case ImsCallProfile.CALL_TYPE_VIDEO_N_VOICE: in applyLocalCallCapabilities() [all …]
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ims/ |
D | ImsCallProfileTest.java | 28 import android.telephony.ims.ImsCallProfile; 83 ImsCallProfile srcParcel = new ImsCallProfile(); in testExtrasCleanup() 102 ImsCallProfile unparceledProfile = ImsCallProfile.CREATOR.createFromParcel(parcel); in testExtrasCleanup()
|
/frameworks/opt/net/ims/src/java/com/android/ims/ |
D | ImsServiceBase.java | 21 import android.telephony.ims.ImsCallProfile; 76 public ImsCallProfile createCallProfile(int serviceId, int serviceType, int callType) { in createCallProfile() 81 public IImsCallSession createCallSession(int serviceId, ImsCallProfile profile, in createCallSession() 168 protected ImsCallProfile onCreateCallProfile(int serviceId, int serviceType, int callType) { in onCreateCallProfile() 174 protected IImsCallSession onCreateCallSession(int serviceId, ImsCallProfile profile, in onCreateCallSession()
|
D | ImsCall.java | 39 import android.telephony.ims.ImsCallProfile; 536 private ImsCallProfile mCallProfile = null; 540 private ImsCallProfile mProposedCallProfile = null; 637 public ImsCall(Context context, ImsCallProfile profile) { in ImsCall() 675 return userId.equals(mCallProfile.getCallExtra(ImsCallProfile.EXTRA_REMOTE_URI, "")); in checkIfRemoteUserIsSame() 706 public ImsCallProfile getCallProfile() { in getCallProfile() 719 public void setCallProfile(ImsCallProfile profile) { in setCallProfile() 731 public ImsCallProfile getLocalCallProfile() throws ImsException { in getLocalCallProfile() 752 public ImsCallProfile getRemoteCallProfile() throws ImsException { in getRemoteCallProfile() 773 public ImsCallProfile getProposedCallProfile() { in getProposedCallProfile() [all …]
|
/frameworks/base/telephony/java/android/telephony/ims/compat/feature/ |
D | MMTelFeature.java | 24 import android.telephony.ims.ImsCallProfile; 108 public ImsCallProfile createCallProfile(int sessionId, int callSessionType, int callType) 116 public IImsCallSession createCallSession(int sessionId, ImsCallProfile profile) 281 public ImsCallProfile createCallProfile(int sessionId, int callSessionType, int callType) { in createCallProfile() 293 public IImsCallSession createCallSession(int sessionId, ImsCallProfile profile, in createCallSession()
|
/frameworks/base/telephony/java/android/telephony/ims/feature/ |
D | MmTelFeature.java | 27 import android.telephony.ims.ImsCallProfile; 80 public ImsCallProfile createCallProfile(int callSessionType, int callType) 92 public IImsCallSession createCallSession(ImsCallProfile profile) throws RemoteException { 336 public void onRejectedCall(ImsCallProfile callProfile, ImsReasonInfo reason) { in onRejectedCall() 455 public final void notifyRejectedCall(@NonNull ImsCallProfile callProfile, in notifyRejectedCall() 557 public @Nullable ImsCallProfile createCallProfile(int callSessionType, int callType) { in createCallProfile() 565 public IImsCallSession createCallSessionInterface(ImsCallProfile profile) in createCallSessionInterface() 578 public @Nullable ImsCallSessionImplBase createCallSession(@NonNull ImsCallProfile profile) { in createCallSession()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/ |
D | MmTelInterfaceAdapter.java | 23 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()
|
D | ImsServiceInterfaceAdapter.java | 23 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()
|