Searched defs:callType (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/telephony/java/com/android/ims/
H A DImsExternalCallState.java57 int callType, boolean isCallheld) {
62 mCallType = callType;
56 ImsExternalCallState(int callId, Uri address, boolean isPullable, int callState, int callType, boolean isCallheld) argument
H A DImsCallProfile.java233 public ImsCallProfile(int serviceType, int callType) { argument
235 mCallType = callType;
306 ", callType=" + mCallType +
362 * @param callType The call type.
365 public static int getVideoStateFromCallType(int callType) { argument
367 switch (callType) {
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsServiceBase.java55 public boolean isConnected(int serviceId, int serviceType, int callType) { argument
56 return onIsConnected(serviceId, serviceType, callType);
76 public ImsCallProfile createCallProfile(int serviceId, int serviceType, int callType) { argument
77 return onCreateCallProfile(serviceId, serviceType, callType);
148 protected boolean onIsConnected(int serviceId, int serviceType, int callType) { argument
168 protected ImsCallProfile onCreateCallProfile(int serviceId, int serviceType, int callType) { argument
H A DImsCall.java1085 * @param callType The call type the user agreed to for accepting the call.
1088 public void accept(int callType) throws ImsException { argument
1089 accept(callType, new ImsStreamMediaProfile());
1095 * @param callType call type to be answered in {@link ImsCallProfile}
1100 public void accept(int callType, ImsStreamMediaProfile profile) throws ImsException { argument
1101 logi("accept :: callType=" + callType + ", profile=" + profile);
1110 mSession.accept(callType, profile);
1379 public void update(int callType, ImsStreamMediaProfile mediaProfile) throws ImsException { argument
1380 logi("update :: callType
[all...]
H A DImsManager.java1022 * @param callType a call type that is specified in {@link ImsCallProfile}
1031 public boolean isConnected(int serviceId, int serviceType, int callType) argument
1036 return mImsService.isConnected(serviceId, serviceType, callType);
1069 * @param callType a call type that is specified in {@link ImsCallProfile}
1082 int serviceType, int callType) throws ImsException {
1086 return mImsService.createCallProfile(serviceId, serviceType, callType);
1081 createCallProfile(int serviceId, int serviceType, int callType) argument
/frameworks/base/core/java/android/provider/
H A DCallLog.java498 * @param callType enumerated values for "incoming", "outgoing", or "missed"
510 int presentation, int callType, int features, PhoneAccountHandle accountHandle,
513 presentation, callType, features, accountHandle, start, duration,
531 * @param callType enumerated values for "incoming", "outgoing", or "missed"
548 String postDialDigits, String viaNumber, int presentation, int callType,
551 return addCall(ci, context, number, postDialDigits, viaNumber, presentation, callType,
570 * @param callType enumerated values for "incoming", "outgoing", or "missed"
591 String postDialDigits, String viaNumber, int presentation, int callType,
652 values.put(TYPE, Integer.valueOf(callType));
665 if (callType
509 addCall(CallerInfo ci, Context context, String number, int presentation, int callType, int features, PhoneAccountHandle accountHandle, long start, int duration, Long dataUsage) argument
547 addCall(CallerInfo ci, Context context, String number, String postDialDigits, String viaNumber, int presentation, int callType, int features, PhoneAccountHandle accountHandle, long start, int duration, Long dataUsage, boolean addForAllUsers, UserHandle userToBeInsertedTo) argument
590 addCall(CallerInfo ci, Context context, String number, String postDialDigits, String viaNumber, int presentation, int callType, int features, PhoneAccountHandle accountHandle, long start, int duration, Long dataUsage, boolean addForAllUsers, UserHandle userToBeInsertedTo, boolean is_read) argument
[all...]
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
H A DImsCallSession.java689 * @param callType call type specified in {@link ImsCallProfile} to be answered
693 public void accept(int callType, ImsStreamMediaProfile profile) { argument
699 miSession.accept(callType, profile);
792 * @param callType call type specified in {@link ImsCallProfile} to be updated
796 public void update(int callType, ImsStreamMediaProfile profile) { argument
802 miSession.update(callType, profile);
/frameworks/base/telecomm/java/android/telecom/
H A DParcelableCallAnalytics.java286 private final int callType; field in class:ParcelableCallAnalytics
322 public ParcelableCallAnalytics(long startTimeMillis, long callDurationMillis, int callType, argument
329 this.callType = callType;
344 callType = in.readInt();
364 out.writeInt(callType);
397 return callType;

Completed in 155 milliseconds