/frameworks/base/telephony/java/com/android/ims/ |
D | ImsCallProfile.java | 33 public class ImsCallProfile implements Parcelable { class 187 public ImsCallProfile(Parcel in) { in ImsCallProfile() method in ImsCallProfile 191 public ImsCallProfile() { in ImsCallProfile() method in ImsCallProfile 198 public ImsCallProfile(int serviceType, int callType) { in ImsCallProfile() method in ImsCallProfile 259 public void updateCallType(ImsCallProfile profile) { in updateCallType() 263 public void updateCallExtras(ImsCallProfile profile) { in updateCallExtras() 297 public static final Creator<ImsCallProfile> CREATOR = new Creator<ImsCallProfile>() { 299 public ImsCallProfile createFromParcel(Parcel in) { 300 return new ImsCallProfile(in); 304 public ImsCallProfile[] newArray(int size) { [all …]
|
D | ImsCallProfile.aidl | 19 parcelable ImsCallProfile;
|
/frameworks/base/telephony/java/com/android/ims/internal/ |
D | IImsCallSessionListener.aidl | 20 import com.android.ims.ImsCallProfile; 36 void callSessionStarted(in IImsCallSession session, in ImsCallProfile profile); in callSessionStarted() 43 void callSessionHeld(in IImsCallSession session, in ImsCallProfile profile); in callSessionHeld() 45 void callSessionHoldReceived(in IImsCallSession session, in ImsCallProfile profile); in callSessionHoldReceived() 46 void callSessionResumed(in IImsCallSession session, in ImsCallProfile profile); in callSessionResumed() 48 void callSessionResumeReceived(in IImsCallSession session, in ImsCallProfile profile); in callSessionResumeReceived() 54 in IImsCallSession newSession, in ImsCallProfile profile); in callSessionMergeStarted() 63 in ImsCallProfile profile); in callSessionUpdated() 67 in ImsCallProfile profile); in callSessionUpdateReceived() 73 in IImsCallSession newSession, in ImsCallProfile profile); in callSessionConferenceExtended() [all …]
|
D | IImsCallSession.aidl | 20 import com.android.ims.ImsCallProfile; 48 ImsCallProfile getCallProfile(); in getCallProfile() 55 ImsCallProfile getLocalCallProfile(); in getLocalCallProfile() 62 ImsCallProfile getRemoteCallProfile(); in getRemoteCallProfile() 113 void start(String callee, in ImsCallProfile profile); in start() 126 void startConference(in String[] participants, in ImsCallProfile profile); in startConference()
|
D | IImsService.aidl | 21 import com.android.ims.ImsCallProfile; 42 ImsCallProfile createCallProfile(int serviceId, int serviceType, int callType); in createCallProfile() 44 IImsCallSession createCallSession(int serviceId, in ImsCallProfile profile, in createCallSession()
|
/frameworks/opt/net/ims/src/java/com/android/ims/internal/ |
D | ImsCallSession.java | 22 import com.android.ims.ImsCallProfile; 109 ImsCallProfile profile) { in callSessionStarted() 139 ImsCallProfile profile) { in callSessionHeld() 158 ImsCallProfile profile) { in callSessionHoldReceived() 167 ImsCallProfile profile) { in callSessionResumed() 186 ImsCallProfile profile) { in callSessionResumeReceived() 198 ImsCallSession newSession, ImsCallProfile profile) { in callSessionMergeStarted() 225 ImsCallProfile profile) { in callSessionUpdated() 244 ImsCallProfile profile) { in callSessionUpdateReceived() 256 ImsCallSession newSession, ImsCallProfile profile) { in callSessionConferenceExtended() [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhoneConnection.java | 42 import com.android.ims.ImsCallProfile; 128 mAddress = imsCall.getCallProfile().getCallExtra(ImsCallProfile.EXTRA_OI); in ImsPhoneConnection() 129 mCnapName = imsCall.getCallProfile().getCallExtra(ImsCallProfile.EXTRA_CNA); in ImsPhoneConnection() 130 mNumberPresentation = ImsCallProfile.OIRToPresentation( in ImsPhoneConnection() 131 imsCall.getCallProfile().getCallExtraInt(ImsCallProfile.EXTRA_OIR)); in ImsPhoneConnection() 132 mCnapNamePresentation = ImsCallProfile.OIRToPresentation( in ImsPhoneConnection() 133 imsCall.getCallProfile().getCallExtraInt(ImsCallProfile.EXTRA_CNAP)); in ImsPhoneConnection() 637 ImsCallProfile negotiatedCallProfile = imsCall.getCallProfile(); in updateMediaCapabilities() 639 ImsCallProfile localCallProfile = imsCall.getLocalCallProfile(); in updateMediaCapabilities() 641 ImsCallProfile remoteCallProfile = imsCall.getRemoteCallProfile(); in updateMediaCapabilities() [all …]
|
D | ImsPhoneCallTracker.java | 47 import com.android.ims.ImsCallProfile; 97 mUssdSession.accept(ImsCallProfile.CALL_TYPE_VOICE); 402 ImsCallProfile.SERVICE_TYPE_EMERGENCY : ImsCallProfile.SERVICE_TYPE_NORMAL; in dialInternal() 403 int callType = ImsCallProfile.getCallTypeFromVideoState(videoState); in dialInternal() 409 ImsCallProfile profile = mImsManager.createCallProfile(mServiceId, in dialInternal() 411 profile.setCallExtraInt(ImsCallProfile.EXTRA_OIR, clirMode); in dialInternal() 458 imsCall.accept(ImsCallProfile.getCallTypeFromVideoState(videoState)); in acceptCall() 814 if (imsCall != null) imsCall.accept(ImsCallProfile.CALL_TYPE_VOICE); in resumeWaitingOrHolding() 841 ImsCallProfile profile = mImsManager.createCallProfile(mServiceId, in sendUSSD() 842 ImsCallProfile.SERVICE_TYPE_NORMAL, ImsCallProfile.CALL_TYPE_VOICE); in sendUSSD() [all …]
|
D | ImsPhone.java | 39 import com.android.ims.ImsCallProfile; 363 mCT.acceptCall(ImsCallProfile.CALL_TYPE_VOICE); in handleCallHoldIncallSupplementaryService()
|
/frameworks/opt/net/ims/src/java/com/android/ims/ |
D | ImsCall.java | 416 private ImsCallProfile mCallProfile = null; 420 private ImsCallProfile mProposedCallProfile = null; 456 public ImsCall(Context context, ImsCallProfile profile) { in ImsCall() 491 return userId.equals(mCallProfile.getCallExtra(ImsCallProfile.EXTRA_REMOTE_URI, "")); in checkIfRemoteUserIsSame() 522 public ImsCallProfile getCallProfile() { in getCallProfile() 533 public ImsCallProfile getLocalCallProfile() throws ImsException { in getLocalCallProfile() 554 public ImsCallProfile getRemoteCallProfile() throws ImsException { in getRemoteCallProfile() 575 public ImsCallProfile getProposedCallProfile() { in getProposedCallProfile() 1406 private ImsCall createNewCall(ImsCallSession session, ImsCallProfile profile) { in createNewCall() 1939 public void callSessionStarted(ImsCallSession session, ImsCallProfile profile) { in callSessionStarted() [all …]
|
D | ImsManager.java | 458 public ImsCallProfile createCallProfile(int serviceId, in createCallProfile() 481 public ImsCall makeCall(int serviceId, ImsCallProfile profile, String[] callees, in makeCall() 687 ImsCallProfile profile) throws ImsException { in createCallSession()
|
/frameworks/opt/net/ims/ |
D | README.txt | 21 ImsManager#makeCall() requires an ImsCallProfile objects, representing the call properties 22 of the local device. ImsCallProfile can creates by ImsManager 24 ImsCallProfile is created by referring GSMA IR.92, GSMA IR.94, 3GPP TS 24.229, 58 ImsCallProfile
|