Home
last modified time | relevance | path

Searched refs:callIntentBuilder (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/commandline/impl/
DCallCommand.java72 CallIntentBuilder callIntentBuilder; in run() local
74 callIntentBuilder = in run()
77 callIntentBuilder = new CallIntentBuilder(number, CallInitiationType.Type.DIALPAD); in run()
80 Intent intent = callIntentBuilder.build(); in run()
85 Intent intent = PreCall.getIntent(appContext, callIntentBuilder); in run()
/packages/apps/Dialer/java/com/android/dialer/historyitemactions/
DIntentModule.java84 public static IntentModule newCallModule(Context context, CallIntentBuilder callIntentBuilder) { in newCallModule() argument
85 return newCallModule(context, callIntentBuilder, /* impressions = */ ImmutableList.of()); in newCallModule()
91 CallIntentBuilder callIntentBuilder, in newCallModule() argument
96 if (callIntentBuilder.isVideoCall()) { in newCallModule()
105 context, PreCall.getIntent(context, callIntentBuilder), text, image, impressions); in newCallModule()
DHistoryItemActionModulesBuilder.java165 CallIntentBuilder callIntentBuilder = in addModuleForVoiceCall() local
168 modules.add(IntentModule.newCallModule(context, callIntentBuilder)); in addModuleForVoiceCall()
209 CallIntentBuilder callIntentBuilder = in addModuleForVideoCall() local
220 callIntentBuilder.setIsDuoCall(isDuoCall), in addModuleForVideoCall()
234 context, callIntentBuilder, getImpressions(Event.REQUEST_CARRIER_VIDEO_CALL))); in addModuleForVideoCall()
238 context, callIntentBuilder.setIsDuoCall(true), getImpressionsForDuoVideoCall())); in addModuleForVideoCall()
/packages/apps/Dialer/java/com/android/dialer/callintent/
DCallIntent.java278 CallIntent.Builder callIntentBuilder = builder();
280 callIntentBuilder.setNumber(source.readParcelable(classLoader));
287 callIntentBuilder
295 callIntentBuilder.addInCallUiIntentExtra(
300 callIntentBuilder.addInCallUiIntentExtra(
303 return callIntentBuilder.autoBuild();
/packages/apps/Dialer/java/com/android/dialer/calldetails/
DCallDetailsActivityCommon.java342 CallIntentBuilder callIntentBuilder = in placeVoiceCall() local
345 callIntentBuilder.setAllowAssistedDial(true); in placeVoiceCall()
348 PreCall.start(getActivity(), callIntentBuilder); in placeVoiceCall() local