HomeSort by relevance Sort by last modified time
    Searched refs:callIntent (Results 1 - 3 of 3) sorted by null

  /packages/services/Telecomm/src/com/android/server/telecom/
TelecomBroadcastReceiver.java 56 Intent callIntent = new Intent(Intent.ACTION_SENDTO, intent.getData());
57 callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
58 context.startActivity(callIntent);
66 Intent callIntent = new Intent(Intent.ACTION_CALL_PRIVILEGED, intent.getData());
67 callIntent.setFlags(
69 context.startActivity(callIntent);
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertReceiver.java 131 Intent callIntent = createCallActivityIntent(context, urlSpans);
132 if (callIntent != null) {
134 context.startActivity(callIntent);
296 PendingIntent mapIntent = null, callIntent = null, snoozeIntent = null, emailIntent = null;
306 callIntent = createCallBroadcastIntent(context, urlSpans, eventId);
338 if (callIntent != null && numActions < MAX_NOTIF_ACTIONS) {
340 resources.getString(R.string.call_label), callIntent);
376 if (callIntent == null || numActions >= MAX_NOTIF_ACTIONS) {
380 contentView.setOnClickPendingIntent(R.id.call_button, callIntent);
    [all...]
  /packages/apps/Dialer/tests/src/com/android/dialer/calllog/
CallLogFragmentTest.java 386 Intent callIntent = intentProvider.getIntent(mActivity);
389 assertEquals(TestConstants.CALL_INTENT_ACTION, callIntent.getAction());

Completed in 91 milliseconds