Home
last modified time | relevance | path

Searched refs:callType (Results 1 – 23 of 23) sorted by relevance

/frameworks/opt/net/ims/src/java/com/android/ims/
DImsServiceBase.java55 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
DImsCall.java1147 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 …]
DMmTelFeatureConnection.java774 public ImsCallProfile createCallProfile(int callServiceType, int callType) in createCallProfile() argument
778 return getServiceInterface(mBinder).createCallProfile(callServiceType, callType); in createCallProfile()
DImsManager.java2003 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/
DImsExternalCallState.java93 @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()
DImsCallProfile.java426 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()
DImsCallSession.java755 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/
DMMTelFeature.java70 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/
DMmTelInterfaceAdapter.java57 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()
DImsServiceInterfaceAdapter.java56 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()
DMmTelFeatureCompatAdapter.java382 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/
DImsCallSessionImplBase.java170 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/
DParcelableCallAnalytics.java309 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/
DIImsMMTelFeature.aidl39 boolean isConnected(int callSessionType, int callType); in isConnected() argument
44 ImsCallProfile createCallProfile(int sessionId, int callSessionType, int callType); in createCallProfile() argument
DIImsService.aidl39 boolean isConnected(int serviceId, int serviceType, int callType); in isConnected() argument
54 ImsCallProfile createCallProfile(int serviceId, int serviceType, int callType); in createCallProfile() argument
DIImsCallSession.aidl136 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/
DCallLog.java628 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/
DTestMmTelFeature.java59 public ImsCallProfile createCallProfile(int callSessionType, int callType) { in createCallProfile() argument
60 return super.createCallProfile(callSessionType, callType); in createCallProfile()
DTestMMTelFeatureCompat.java34 public boolean isConnected(int callSessinType, int callType) { in isConnected() argument
/frameworks/base/telephony/java/android/telephony/ims/feature/
DMmTelFeature.java80 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/
DIImsMmTelFeature.aidl39 ImsCallProfile createCallProfile(int callSessionType, int callType); in createCallProfile() argument
/frameworks/base/telephony/java/android/telephony/ims/compat/stub/
DImsCallSessionImplBase.java181 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/
DImsPhoneCallTracker.java1054 int callType = ImsCallProfile.getCallTypeFromVideoState(videoState); in dialInternal() local
1060 ImsCallProfile profile = mImsManager.createCallProfile(serviceType, callType); in dialInternal()