Searched refs:callIntent (Results 1 – 3 of 3) sorted by relevance
/packages/apps/Calendar/src/com/android/calendar/alerts/ |
D | AlertReceiver.java | 131 Intent callIntent = createCallActivityIntent(context, urlSpans); in onReceive() local 132 if (callIntent != null) { in onReceive() 134 context.startActivity(callIntent); in onReceive() 296 PendingIntent mapIntent = null, callIntent = null, snoozeIntent = null, emailIntent = null; in buildBasicNotification() local 306 callIntent = createCallBroadcastIntent(context, urlSpans, eventId); in buildBasicNotification() 338 if (callIntent != null && numActions < MAX_NOTIF_ACTIONS) { in buildBasicNotification() 340 resources.getString(R.string.call_label), callIntent); in buildBasicNotification() 376 if (callIntent == null || numActions >= MAX_NOTIF_ACTIONS) { in buildBasicNotification() 380 contentView.setOnClickPendingIntent(R.id.call_button, callIntent); in buildBasicNotification() 864 Intent callIntent = new Intent(Intent.ACTION_DIAL, Uri.parse(urlString)); in createCallActivityIntent() local [all …]
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | TelecomBroadcastReceiver.java | 56 Intent callIntent = new Intent(Intent.ACTION_SENDTO, intent.getData()); in onReceive() local 57 callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in onReceive() 58 context.startActivity(callIntent); in onReceive() 66 Intent callIntent = new Intent(Intent.ACTION_CALL_PRIVILEGED, intent.getData()); in onReceive() local 67 callIntent.setFlags( in onReceive() 69 context.startActivity(callIntent); in onReceive()
|
/packages/apps/Dialer/tests/src/com/android/dialer/calllog/ |
D | CallLogFragmentTest.java | 385 Intent callIntent = intentProvider.getIntent(mActivity); in checkCallStatus() local 388 assertEquals(Intent.ACTION_CALL_PRIVILEGED, callIntent.getAction()); in checkCallStatus()
|