Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothPermissionRequest.java133 Intent deleteIntent = new Intent(BluetoothDevice.ACTION_CONNECTION_ACCESS_REPLY); in onReceive() local
134 deleteIntent.putExtra(BluetoothDevice.EXTRA_DEVICE, mDevice); in onReceive()
135 deleteIntent.putExtra(BluetoothDevice.EXTRA_CONNECTION_ACCESS_RESULT, in onReceive()
137 deleteIntent.putExtra(BluetoothDevice.EXTRA_ACCESS_REQUEST_TYPE, mRequestType); in onReceive()
181 .setDeleteIntent(PendingIntent.getBroadcast(context, 0, deleteIntent, 0)) in onReceive()
/packages/apps/Calendar/src/com/android/calendar/alerts/
DAlertReceiver.java283 PendingIntent deleteIntent = createDeleteEventIntent(context, eventId, startMillis, in buildBasicNotification() local
291 notificationBuilder.setDeleteIntent(deleteIntent); in buildBasicNotification()
469 Intent deleteIntent = new Intent(); in makeDigestNotification() local
470 deleteIntent.setClass(context, DismissAlarmsService.class); in makeDigestNotification()
471 deleteIntent.setAction(DismissAlarmsService.DISMISS_ACTION); in makeDigestNotification()
472 deleteIntent.putExtra(AlertUtils.EVENT_IDS_KEY, eventIds); in makeDigestNotification()
473 deleteIntent.putExtra(AlertUtils.EVENT_STARTS_KEY, startMillis); in makeDigestNotification()
474 PendingIntent pendingDeleteIntent = PendingIntent.getService(context, 0, deleteIntent, in makeDigestNotification()
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
DCellBroadcastAlertService.java690 Intent deleteIntent = new Intent(context, CellBroadcastReceiver.class); in createMarkAsReadIntent() local
691 deleteIntent.setAction(CellBroadcastReceiver.ACTION_MARK_AS_READ); in createMarkAsReadIntent()
692 deleteIntent.putExtra(CellBroadcastReceiver.EXTRA_DELIVERY_TIME, deliveryTime); in createMarkAsReadIntent()
693 return deleteIntent; in createMarkAsReadIntent()
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DNotificationActionUtils.java659 final Intent deleteIntent = new Intent(NotificationActionIntentService.ACTION_DESTRUCT); in createUndoNotification() local
660 deleteIntent.setPackage(packageName); in createUndoNotification()
661 deleteIntent.setData(notificationAction.mConversation.uri); in createUndoNotification()
662 putNotificationActionExtra(deleteIntent, notificationAction); in createUndoNotification()
664 notificationId, deleteIntent, PendingIntent.FLAG_CANCEL_CURRENT); in createUndoNotification()
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapService.java789 Intent deleteIntent = new Intent(); in createPbapNotification() local
790 deleteIntent.setClass(this, BluetoothPbapService.class); in createPbapNotification()
791 deleteIntent.setAction(AUTH_CANCELLED_ACTION); in createPbapNotification()
810 .setDeleteIntent(PendingIntent.getBroadcast(this, 0, deleteIntent, 0)) in createPbapNotification()
/packages/apps/StorageManager/src/com/android/storagemanager/automatic/
DNotificationController.java184 PendingIntent deleteIntent = PendingIntent.getBroadcast(context, 0, in showNotification() local
218 .setDeleteIntent(deleteIntent) in showNotification()
/packages/apps/Dialer/java/com/android/dialer/app/calllog/
DVisualVoicemailNotifier.java64 PendingIntent deleteIntent = in showNotifications() local
75 .setDeleteIntent(deleteIntent) in showNotifications()
/packages/apps/Settings/src/com/android/settings/notification/
DNotificationStation.java434 if (n.deleteIntent != null) { in generateExtraText()
439 .append(formatPendingIntent(n.deleteIntent)); in generateExtraText()