Home
last modified time | relevance | path

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

/frameworks/base/telecomm/java/android/telecom/
DParcelableCallAnalytics.java66 private final int callType; field in ParcelableCallAnalytics
90 public ParcelableCallAnalytics(long startTimeMillis, long callDurationMillis, int callType, in ParcelableCallAnalytics() argument
96 this.callType = callType; in ParcelableCallAnalytics()
109 callType = in.readInt(); in ParcelableCallAnalytics()
122 out.writeInt(callType); in writeToParcel()
141 return callType; in getCallType()
/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()
70 public ImsCallProfile createCallProfile(int serviceId, int serviceType, int callType) { in createCallProfile() argument
71 return onCreateCallProfile(serviceId, serviceType, callType); in createCallProfile()
142 protected boolean onIsConnected(int serviceId, int serviceType, int callType) { in onIsConnected() argument
158 protected ImsCallProfile onCreateCallProfile(int serviceId, int serviceType, int callType) { in onCreateCallProfile() argument
DImsCall.java1032 public void accept(int callType) throws ImsException { in accept() argument
1033 accept(callType, new ImsStreamMediaProfile()); in accept()
1044 public void accept(int callType, ImsStreamMediaProfile profile) throws ImsException { in accept() argument
1045 logi("accept :: callType=" + callType + ", profile=" + profile); in accept()
1054 mSession.accept(callType, profile); in accept()
1316 public void update(int callType, ImsStreamMediaProfile mediaProfile) throws ImsException { in update() argument
1317 logi("update :: callType=" + callType + ", mediaProfile=" + mediaProfile); in update()
1343 mSession.update(callType, mediaProfile); in update()
DImsManager.java822 public boolean isConnected(int serviceId, int serviceType, int callType) in isConnected() argument
827 return mImsService.isConnected(serviceId, serviceType, callType); in isConnected()
873 int serviceType, int callType) throws ImsException { in createCallProfile() argument
877 return mImsService.createCallProfile(serviceId, serviceType, callType); in createCallProfile()
/frameworks/base/core/java/android/provider/
DCallLog.java496 int presentation, int callType, int features, PhoneAccountHandle accountHandle, in addCall() argument
499 presentation, callType, features, accountHandle, start, duration, in addCall()
534 String postDialDigits, String viaNumber, int presentation, int callType, in addCall() argument
537 return addCall(ci, context, number, postDialDigits, viaNumber, presentation, callType, in addCall()
577 String postDialDigits, String viaNumber, int presentation, int callType, in addCall() argument
638 values.put(TYPE, Integer.valueOf(callType)); in addCall()
651 if (callType == MISSED_TYPE) { in addCall()
689 && callType == Calls.OUTGOING_TYPE in addCall()
/frameworks/base/telephony/java/com/android/ims/
DImsCallProfile.java225 public ImsCallProfile(int serviceType, int callType) { in ImsCallProfile() argument
227 mCallType = callType; in ImsCallProfile()
357 public static int getVideoStateFromCallType(int callType) { in getVideoStateFromCallType() argument
359 switch (callType) { in getVideoStateFromCallType()
DImsExternalCallState.java56 int callType, boolean isCallheld) { in ImsExternalCallState() argument
61 mCallType = callType; in ImsExternalCallState()
/frameworks/base/telephony/java/com/android/ims/internal/
DIImsCallSession.aidl135 void accept(int callType, in ImsStreamMediaProfile profile); in accept() argument
187 void update(int callType, in ImsStreamMediaProfile profile); in update() argument
DIImsService.aidl39 boolean isConnected(int serviceId, int serviceType, int callType); in isConnected() argument
43 ImsCallProfile createCallProfile(int serviceId, int serviceType, int callType); in createCallProfile() argument
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
DImsCallSession.java693 public void accept(int callType, ImsStreamMediaProfile profile) { in accept() argument
699 miSession.accept(callType, profile); in accept()
796 public void update(int callType, ImsStreamMediaProfile profile) { in update() argument
802 miSession.update(callType, profile); in update()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneCallTracker.java489 int callType = ImsCallProfile.getCallTypeFromVideoState(videoState); in dialInternal() local
496 serviceType, callType); in dialInternal()