Searched refs:deleteIntent (Results 1 – 5 of 5) sorted by relevance
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
D | BluetoothPermissionRequest.java | 133 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() 172 .setDeleteIntent(PendingIntent.getBroadcast(context, 0, deleteIntent, 0)) in onReceive()
|
/packages/apps/Calendar/src/com/android/calendar/alerts/ |
D | AlertReceiver.java | 283 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/ |
D | BluetoothPbapService.java | 782 Intent deleteIntent = new Intent(); in createPbapNotification() local 783 deleteIntent.setClass(this, BluetoothPbapReceiver.class); in createPbapNotification() 789 deleteIntent.setAction(AUTH_CANCELLED_ACTION); in createPbapNotification() 801 notification.deleteIntent = PendingIntent.getBroadcast(this, 0, deleteIntent, 0); in createPbapNotification()
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
D | NotificationActionUtils.java | 659 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/ |
D | BluetoothOppNotification.java | 426 outNoti.deleteIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0); in updateCompletedNotification() 478 inNoti.deleteIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0); in updateCompletedNotification() 526 n.deleteIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0); in updateIncomingFileConfirmNotification()
|