/frameworks/opt/net/ims/src/java/com/android/ims/ |
D | ImsServiceBase.java | 55 public boolean isConnected(int serviceId, int serviceType, int callType) { in isConnected() argument 56 return onIsConnected(serviceId, serviceType, callType); in isConnected() 76 public ImsCallProfile createCallProfile(int serviceId, int serviceType, int callType) { in createCallProfile() argument 77 return onCreateCallProfile(serviceId, serviceType, callType); in createCallProfile() 148 protected boolean onIsConnected(int serviceId, int serviceType, int callType) { in onIsConnected() argument 168 protected ImsCallProfile onCreateCallProfile(int serviceId, int serviceType, int callType) { in onCreateCallProfile() argument
|
D | ImsCall.java | 1147 public void accept(int callType) throws ImsException { in accept() argument 1148 accept(callType, new ImsStreamMediaProfile()); in accept() 1159 public void accept(int callType, ImsStreamMediaProfile profile) throws ImsException { in accept() argument 1160 logi("accept :: callType=" + callType + ", profile=" + profile); in accept() 1174 mSession.accept(callType, profile); in accept() 1491 public void update(int callType, ImsStreamMediaProfile mediaProfile) throws ImsException { in update() argument 1492 logi("update :: callType=" + callType + ", mediaProfile=" + mediaProfile); in update() 1518 mSession.update(callType, mediaProfile); in update() 3606 String callType = mCallProfile.getCallExtra(ImsCallProfile.EXTRA_CALL_RAT_TYPE); in getRadioTechnology() local 3607 if (callType == null || callType.isEmpty()) { in getRadioTechnology() [all …]
|
D | MmTelFeatureConnection.java | 774 public ImsCallProfile createCallProfile(int callServiceType, int callType) in createCallProfile() argument 778 return getServiceInterface(mBinder).createCallProfile(callServiceType, callType); in createCallProfile()
|
D | ImsManager.java | 2003 public ImsCallProfile createCallProfile(int serviceType, int callType) throws ImsException { in createCallProfile() argument 2007 return mMmTelFeatureConnection.createCallProfile(serviceType, callType); in createCallProfile()
|
/frameworks/base/telephony/java/android/telephony/ims/ |
D | ImsExternalCallState.java | 93 @ExternalCallState int callState, int callType, boolean isCallheld) { in ImsExternalCallState() argument 98 mCallType = callType; in ImsExternalCallState() 105 boolean isPullable, @ExternalCallState int callState, int callType, in ImsExternalCallState() argument 112 mCallType = callType; in ImsExternalCallState() 131 @ExternalCallType int callType, boolean isCallheld) { in ImsExternalCallState() argument 137 mCallType = callType; in ImsExternalCallState()
|
D | ImsCallProfile.java | 426 public ImsCallProfile(int serviceType, int callType) { in ImsCallProfile() argument 428 mCallType = callType; in ImsCallProfile() 454 public ImsCallProfile(int serviceType, int callType, Bundle callExtras, in ImsCallProfile() argument 457 mCallType = callType; in ImsCallProfile() 645 public static int getVideoStateFromCallType(int callType) { in getVideoStateFromCallType() argument 647 switch (callType) { in getVideoStateFromCallType()
|
D | ImsCallSession.java | 755 public void accept(int callType, ImsStreamMediaProfile profile) { in accept() argument 761 miSession.accept(callType, profile); in accept() 874 public void update(int callType, ImsStreamMediaProfile profile) { in update() argument 880 miSession.update(callType, profile); in update()
|
/frameworks/base/telephony/java/android/telephony/ims/compat/feature/ |
D | MMTelFeature.java | 70 public boolean isConnected(int callSessionType, int callType) 73 return MMTelFeature.this.isConnected(callSessionType, callType); 108 public ImsCallProfile createCallProfile(int sessionId, int callSessionType, int callType) 111 return MMTelFeature.this.createCallProfile(sessionId, callSessionType, callType); 234 public boolean isConnected(int callSessionType, int callType) { in isConnected() argument 281 public ImsCallProfile createCallProfile(int sessionId, int callSessionType, int callType) { in createCallProfile() argument
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/ |
D | MmTelInterfaceAdapter.java | 57 public boolean isConnected(int callSessionType, int callType) throws RemoteException { in isConnected() argument 58 return getInterface().isConnected(callSessionType, callType); in isConnected() 78 public ImsCallProfile createCallProfile(int sessionId, int callSessionType, int callType) in createCallProfile() argument 80 return getInterface().createCallProfile(sessionId, callSessionType, callType); in createCallProfile()
|
D | ImsServiceInterfaceAdapter.java | 56 public boolean isConnected(int callSessionType, int callType) throws RemoteException { in isConnected() argument 57 return getInterface().isConnected(SERVICE_ID, callSessionType, callType); in isConnected() 78 public ImsCallProfile createCallProfile(int sessionId, int callSessionType, int callType) in createCallProfile() argument 80 return getInterface().createCallProfile(sessionId, callSessionType, callType); in createCallProfile()
|
D | MmTelFeatureCompatAdapter.java | 382 public ImsCallProfile createCallProfile(int callSessionType, int callType) { in createCallProfile() argument 384 return mCompatFeature.createCallProfile(mSessionId, callSessionType, callType); in createCallProfile()
|
/frameworks/base/telephony/java/android/telephony/ims/stub/ |
D | ImsCallSessionImplBase.java | 170 public void accept(int callType, ImsStreamMediaProfile profile) { 171 ImsCallSessionImplBase.this.accept(callType, profile); 205 public void update(int callType, ImsStreamMediaProfile profile) { 206 ImsCallSessionImplBase.this.update(callType, profile); 397 public void accept(int callType, ImsStreamMediaProfile profile) { in accept() argument 471 public void update(int callType, ImsStreamMediaProfile profile) { in update() argument
|
/frameworks/base/telecomm/java/android/telecom/ |
D | ParcelableCallAnalytics.java | 309 private final int callType; field in ParcelableCallAnalytics 348 public ParcelableCallAnalytics(long startTimeMillis, long callDurationMillis, int callType, in ParcelableCallAnalytics() argument 355 this.callType = callType; in ParcelableCallAnalytics() 370 callType = in.readInt(); in ParcelableCallAnalytics() 391 out.writeInt(callType); in writeToParcel() 430 return callType; in getCallType()
|
/frameworks/base/telephony/java/com/android/ims/internal/ |
D | IImsMMTelFeature.aidl | 39 boolean isConnected(int callSessionType, int callType); in isConnected() argument 44 ImsCallProfile createCallProfile(int sessionId, int callSessionType, int callType); in createCallProfile() argument
|
D | IImsService.aidl | 39 boolean isConnected(int serviceId, int serviceType, int callType); in isConnected() argument 54 ImsCallProfile createCallProfile(int serviceId, int serviceType, int callType); in createCallProfile() argument
|
D | IImsCallSession.aidl | 136 void accept(int callType, in ImsStreamMediaProfile profile); in accept() argument 195 void update(int callType, in ImsStreamMediaProfile profile); in update() argument
|
/frameworks/base/core/java/android/provider/ |
D | CallLog.java | 628 int presentation, int callType, int features, in addCall() argument 632 presentation, callType, features, accountHandle, start, duration, in addCall() 668 String postDialDigits, String viaNumber, int presentation, int callType, in addCall() argument 671 return addCall(ci, context, number, postDialDigits, viaNumber, presentation, callType, in addCall() 717 String postDialDigits, String viaNumber, int presentation, int callType, in addCall() argument 752 values.put(TYPE, Integer.valueOf(callType)); in addCall() 768 if (callType == MISSED_TYPE) { in addCall() 810 && callType == Calls.OUTGOING_TYPE in addCall()
|
/frameworks/opt/telephony/tests/telephonytests/src/android/telephony/ims/ |
D | TestMmTelFeature.java | 59 public ImsCallProfile createCallProfile(int callSessionType, int callType) { in createCallProfile() argument 60 return super.createCallProfile(callSessionType, callType); in createCallProfile()
|
D | TestMMTelFeatureCompat.java | 34 public boolean isConnected(int callSessinType, int callType) { in isConnected() argument
|
/frameworks/base/telephony/java/android/telephony/ims/feature/ |
D | MmTelFeature.java | 80 public ImsCallProfile createCallProfile(int callSessionType, int callType) 84 return MmTelFeature.this.createCallProfile(callSessionType, callType); 557 public @Nullable ImsCallProfile createCallProfile(int callSessionType, int callType) { in createCallProfile() argument
|
/frameworks/base/telephony/java/android/telephony/ims/aidl/ |
D | IImsMmTelFeature.aidl | 39 ImsCallProfile createCallProfile(int callSessionType, int callType); in createCallProfile() argument
|
/frameworks/base/telephony/java/android/telephony/ims/compat/stub/ |
D | ImsCallSessionImplBase.java | 181 public void accept(int callType, ImsStreamMediaProfile profile) { in accept() argument 262 public void update(int callType, ImsStreamMediaProfile profile) { in update() argument
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhoneCallTracker.java | 1054 int callType = ImsCallProfile.getCallTypeFromVideoState(videoState); in dialInternal() local 1060 ImsCallProfile profile = mImsManager.createCallProfile(serviceType, callType); in dialInternal()
|