Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothPermissionRequest.java122 Intent deleteIntent = new Intent(BluetoothDevice.ACTION_CONNECTION_ACCESS_REPLY); in onReceive() local
123 deleteIntent.putExtra(BluetoothDevice.EXTRA_DEVICE, mDevice); in onReceive()
124 deleteIntent.putExtra(BluetoothDevice.EXTRA_CONNECTION_ACCESS_RESULT, in onReceive()
126 deleteIntent.putExtra(BluetoothDevice.EXTRA_ACCESS_REQUEST_TYPE, mRequestType); in onReceive()
156 .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/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapService.java779 Intent deleteIntent = new Intent(); in createPbapNotification() local
780 deleteIntent.setClass(this, BluetoothPbapReceiver.class); in createPbapNotification()
786 deleteIntent.setAction(AUTH_CANCELLED_ACTION); in createPbapNotification()
798 notification.deleteIntent = PendingIntent.getBroadcast(this, 0, deleteIntent, 0); in createPbapNotification()
/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/opp/
DBluetoothOppNotification.java414 outNoti.deleteIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0); in updateCompletedNotification()
463 inNoti.deleteIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0); in updateCompletedNotification()
511 n.deleteIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0); in updateIncomingFileConfirmNotification()