Home
last modified time | relevance | path

Searched refs:isDuoCall (Results 1 – 8 of 8) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/callintent/
DCallIntentBuilder.java46 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/
DCallbackActionHelper.java51 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
DCallTypeHelper.java98 int callType, boolean isVideoCall, boolean isPulledCall, boolean isDuoCall) { in getCallTypeText() argument
105 if (isDuoCall) { in getCallTypeText()
123 if (isDuoCall) { in getCallTypeText()
DCallLogEntryText.java257 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/
DHistoryItemActionModulesBuilder.java216 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/
DCallDetailsEntryViewHolder.java110 boolean isDuoCall = entry.getIsDuoCall(); in setCallDetails()
128 callTypeHelper.getCallTypeText(callType, isVideoCall, isPulledCall, isDuoCall)); in setCallDetails()
/packages/apps/Dialer/java/com/android/dialer/precall/impl/
DDuoAction.java53 return builder.isDuoCall(); in requiresUi()
DPreCallCoordinatorImpl.java184 if (builder.isDuoCall()) { in placeCall()