Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothPermissionRequest.java92 Intent deleteIntent = new Intent(BluetoothDevice.ACTION_CONNECTION_ACCESS_REPLY); in onReceive() local
93 deleteIntent.putExtra(BluetoothDevice.EXTRA_DEVICE, mDevice); in onReceive()
94 deleteIntent.putExtra(BluetoothDevice.EXTRA_CONNECTION_ACCESS_RESULT, in onReceive()
109 notification.deleteIntent = PendingIntent.getBroadcast(context, 0, deleteIntent, 0); in onReceive()
/packages/apps/Calendar/src/com/android/calendar/alerts/
DAlertReceiver.java292 PendingIntent deleteIntent = createDeleteEventIntent(context, eventId, startMillis, in buildBasicNotification() local
300 notificationBuilder.setDeleteIntent(deleteIntent); in buildBasicNotification()
478 Intent deleteIntent = new Intent(); in makeDigestNotification() local
479 deleteIntent.setClass(context, DismissAlarmsService.class); in makeDigestNotification()
480 deleteIntent.setAction(DELETE_ALL_ACTION); in makeDigestNotification()
481 deleteIntent.putExtra(AlertUtils.EVENT_IDS_KEY, eventIds); in makeDigestNotification()
482 deleteIntent.putExtra(AlertUtils.EVENT_STARTS_KEY, startMillis); in makeDigestNotification()
483 PendingIntent pendingDeleteIntent = PendingIntent.getService(context, 0, deleteIntent, in makeDigestNotification()
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapService.java696 Intent deleteIntent = new Intent(); in createPbapNotification() local
697 deleteIntent.setClass(this, BluetoothPbapReceiver.class); in createPbapNotification()
703 deleteIntent.setAction(AUTH_CANCELLED_ACTION); in createPbapNotification()
713 notification.deleteIntent = PendingIntent.getBroadcast(this, 0, deleteIntent, 0); in createPbapNotification()
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppNotification.java410 outNoti.deleteIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0); in updateCompletedNotification()
457 inNoti.deleteIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0); in updateCompletedNotification()
503 n.deleteIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0); in updateIncomingFileConfirmNotification()