Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/provider/
DCallLog.java421 int presentation, int callType, int features, PhoneAccountHandle accountHandle, in addCall() argument
423 return addCall(ci, context, number, presentation, callType, features, accountHandle, in addCall()
453 … int presentation, int callType, int features, PhoneAccountHandle accountHandle, in addCall() argument
455 return addCall(ci, context, number, presentation, callType, features, accountHandle, in addCall()
486 int presentation, int callType, int features, PhoneAccountHandle accountHandle, in addCall() argument
539 values.put(TYPE, Integer.valueOf(callType)); in addCall()
551 if (callType == MISSED_TYPE) { in addCall()
589 && callType == Calls.OUTGOING_TYPE in addCall()
/frameworks/base/telephony/java/com/android/ims/internal/
DIImsService.aidl38 boolean isConnected(int serviceId, int serviceType, int callType); in isConnected() argument
42 ImsCallProfile createCallProfile(int serviceId, int serviceType, int callType); in createCallProfile() argument
DIImsCallSession.aidl135 void accept(int callType, in ImsStreamMediaProfile profile); in accept() argument
187 void update(int callType, in ImsStreamMediaProfile profile); in update() argument
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
DImsCallSession.java683 public void accept(int callType, ImsStreamMediaProfile profile) { in accept() argument
689 miSession.accept(callType, profile); in accept()
786 public void update(int callType, ImsStreamMediaProfile profile) { in update() argument
792 miSession.update(callType, profile); in update()
/frameworks/base/telephony/java/com/android/ims/
DImsCallProfile.java200 public ImsCallProfile(int serviceType, int callType) { in ImsCallProfile() argument
202 mCallType = callType; in ImsCallProfile()
/frameworks/opt/net/ims/src/java/com/android/ims/
DImsManager.java577 public boolean isConnected(int serviceId, int serviceType, int callType) in isConnected() argument
582 return mImsService.isConnected(serviceId, serviceType, callType); in isConnected()
628 int serviceType, int callType) throws ImsException { in createCallProfile() argument
632 return mImsService.createCallProfile(serviceId, serviceType, callType); in createCallProfile()
DImsCall.java1022 public void accept(int callType) throws ImsException { in accept() argument
1023 accept(callType, new ImsStreamMediaProfile()); in accept()
1034 public void accept(int callType, ImsStreamMediaProfile profile) throws ImsException { in accept() argument
1035 logi("accept :: callType=" + callType + ", profile=" + profile); in accept()
1044 mSession.accept(callType, profile); in accept()
1306 public void update(int callType, ImsStreamMediaProfile mediaProfile) throws ImsException { in update() argument
1307 logi("update :: callType=" + callType + ", mediaProfile=" + mediaProfile); in update()
1333 mSession.update(callType, mediaProfile); in update()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneConnection.java741 int callType = localCallProfile.mCallType; in updateMediaCapabilities() local
743 boolean newLocalVideoCapable = callType == ImsCallProfile.CALL_TYPE_VT; in updateMediaCapabilities()
DImsPhoneCallTracker.java406 int callType = ImsCallProfile.getCallTypeFromVideoState(videoState); in dialInternal() local
413 serviceType, callType); in dialInternal()