Searched refs:callIntent (Results 1 – 2 of 2) sorted by relevance
/packages/apps/Calendar/src/com/android/calendar/alerts/ |
D | AlertReceiver.java | 138 Intent callIntent = createCallActivityIntent(context, urlSpans); in onReceive() local 139 if (callIntent != null) { in onReceive() 141 context.startActivity(callIntent); in onReceive() 305 PendingIntent mapIntent = null, callIntent = null, snoozeIntent = null, emailIntent = null; in buildBasicNotification() local 315 callIntent = createCallBroadcastIntent(context, urlSpans, eventId); in buildBasicNotification() 347 if (callIntent != null && numActions < MAX_NOTIF_ACTIONS) { in buildBasicNotification() 349 resources.getString(R.string.call_label), callIntent); in buildBasicNotification() 385 if (callIntent == null || numActions >= MAX_NOTIF_ACTIONS) { in buildBasicNotification() 389 contentView.setOnClickPendingIntent(R.id.call_button, callIntent); in buildBasicNotification() 877 Intent callIntent = new Intent(Intent.ACTION_DIAL, Uri.parse(urlString)); in createCallActivityIntent() local [all …]
|
/packages/apps/Phone/src/com/android/phone/ |
D | PhoneGlobals.java | 1589 Intent callIntent = new Intent(Intent.ACTION_CALL_PRIVILEGED, intent.getData()); in onReceive() local 1590 callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK in onReceive() 1592 context.startActivity(callIntent); in onReceive()
|