Searched refs:isDuoCall (Results 1 – 8 of 8) sorted by relevance
/packages/apps/Dialer/java/com/android/dialer/callintent/ |
D | CallIntentBuilder.java | 46 private boolean isDuoCall; field in CallIntentBuilder 113 isDuoCall = parcel.readInt() != 0; in CallIntentBuilder() 157 public CallIntentBuilder setIsDuoCall(boolean isDuoCall) { in setIsDuoCall() argument 158 this.isDuoCall = isDuoCall; in setIsDuoCall() 162 public boolean isDuoCall() { in isDuoCall() method in CallIntentBuilder 163 return isDuoCall; in isDuoCall() 281 dest.writeInt(isDuoCall ? 1 : 0); in writeToParcel()
|
/packages/apps/Dialer/java/com/android/dialer/calllogutils/ |
D | CallbackActionHelper.java | 51 return getCallbackAction(number, features, isDuoCall(context, phoneAccountComponentName)); in getCallbackAction() 63 String number, int features, boolean isDuoCall) { in getCallbackAction() argument 67 if (isDuoCall) { in getCallbackAction() 79 private static boolean isDuoCall(Context context, String phoneAccountComponentName) { in isDuoCall() method in CallbackActionHelper
|
D | CallTypeHelper.java | 98 int callType, boolean isVideoCall, boolean isPulledCall, boolean isDuoCall) { in getCallTypeText() argument 105 if (isDuoCall) { in getCallTypeText() 123 if (isDuoCall) { in getCallTypeText()
|
D | CallLogEntryText.java | 257 boolean isDuoCall = in getNumberTypeLabel() 261 isDuoCall ? R.string.new_call_log_duo_video : R.string.new_call_log_carrier_video)); in getNumberTypeLabel()
|
/packages/apps/Dialer/java/com/android/dialer/historyitemactions/ |
D | HistoryItemActionModulesBuilder.java | 216 boolean isDuoCall = isDuoCall(); in addModuleForVideoCall() 220 callIntentBuilder.setIsDuoCall(isDuoCall), in addModuleForVideoCall() 221 isDuoCall in addModuleForVideoCall() 460 private boolean isDuoCall() { in isDuoCall() method in HistoryItemActionModulesBuilder
|
/packages/apps/Dialer/java/com/android/dialer/calldetails/ |
D | CallDetailsEntryViewHolder.java | 110 boolean isDuoCall = entry.getIsDuoCall(); in setCallDetails() 128 callTypeHelper.getCallTypeText(callType, isVideoCall, isPulledCall, isDuoCall)); in setCallDetails()
|
/packages/apps/Dialer/java/com/android/dialer/precall/impl/ |
D | DuoAction.java | 53 return builder.isDuoCall(); in requiresUi()
|
D | PreCallCoordinatorImpl.java | 184 if (builder.isDuoCall()) { in placeCall()
|