Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothPermissionRequest.java134 Intent deleteIntent = new Intent(BluetoothDevice.ACTION_CONNECTION_ACCESS_REPLY); in onReceive() local
135 deleteIntent.setPackage(bluetoothName); in onReceive()
136 deleteIntent.putExtra(BluetoothDevice.EXTRA_DEVICE, mDevice); in onReceive()
137 deleteIntent.putExtra(BluetoothDevice.EXTRA_CONNECTION_ACCESS_RESULT, in onReceive()
139 deleteIntent.putExtra(BluetoothDevice.EXTRA_ACCESS_REQUEST_TYPE, mRequestType); in onReceive()
186 .setDeleteIntent(PendingIntent.getBroadcast(context, 0, deleteIntent, in onReceive()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/util/
DDeletableUtils.kt45 val deleteIntent = getDeleteActionIntent(context, wallpaperInfo.wallpaperComponent) in deleteLiveWallpaper() constant
46 if (deleteIntent != null) { in deleteLiveWallpaper()
47 context.startService(deleteIntent) in deleteLiveWallpaper()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/opp/
DBluetoothOppNotification.java518 Intent deleteIntent = new Intent(mContext, BluetoothOppReceiver.class); in updateCompletedNotification() local
520 deleteIntent.setAction(Constants.ACTION_HIDE_COMPLETED_OUTBOUND_TRANSFER); in updateCompletedNotification()
522 deleteIntent.setAction(Constants.ACTION_COMPLETE_HIDE); in updateCompletedNotification()
542 deleteIntent, in updateCompletedNotification()
607 Intent deleteIntent = new Intent(mContext, BluetoothOppReceiver.class); in updateCompletedNotification() local
609 deleteIntent.setAction(Constants.ACTION_HIDE_COMPLETED_INBOUND_TRANSFER); in updateCompletedNotification()
611 deleteIntent.setAction(Constants.ACTION_COMPLETE_HIDE); in updateCompletedNotification()
631 deleteIntent, in updateCompletedNotification()
/packages/modules/Connectivity/tests/cts/hostside-network-policy/app/src/com/android/cts/netpolicy/hostside/
DMyNotificationListenerService.java52 if (notification.deleteIntent != null) { in onNotificationPosted()
53 sender.send("delete", notification.deleteIntent); in onNotificationPosted()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/pbap/
DPbapStateMachine.java423 Intent deleteIntent = new Intent(); in createPbapNotification() local
424 deleteIntent.setClass(mService, BluetoothPbapService.class); in createPbapNotification()
425 deleteIntent.setAction(BluetoothPbapService.AUTH_CANCELLED_ACTION); in createPbapNotification()
451 deleteIntent, in createPbapNotification()
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
DCellBroadcastAlertService.java902 Intent deleteIntent = new Intent(intent); in addToNotificationBar() local
903 deleteIntent.putExtra(CellBroadcastAlertService.DISMISS_DIALOG, true); in addToNotificationBar()
910 deleteIntent, PendingIntent.FLAG_UPDATE_CURRENT in addToNotificationBar()
1057 Intent deleteIntent = new Intent(context, CellBroadcastInternalReceiver.class); in createMarkAsReadIntent() local
1058 deleteIntent.setAction(CellBroadcastReceiver.ACTION_MARK_AS_READ); in createMarkAsReadIntent()
1059 deleteIntent.putExtra(CellBroadcastReceiver.EXTRA_DELIVERY_TIME, deliveryTime); in createMarkAsReadIntent()
1060 deleteIntent.putExtra(CellBroadcastReceiver.EXTRA_NOTIF_ID, notificationId); in createMarkAsReadIntent()
1061 return deleteIntent; in createMarkAsReadIntent()
/packages/apps/Car/Notification/src/com/android/car/notification/
DCarNotificationDiff.java220 || !Objects.equals(oldNotification.deleteIntent, newNotification.deleteIntent) in sameNotificationContent()
/packages/apps/StorageManager/src/com/android/storagemanager/automatic/
DNotificationController.java192 PendingIntent deleteIntent = PendingIntent.getBroadcast(context, 0, in showNotification() local
226 .setDeleteIntent(deleteIntent) in showNotification()
/packages/apps/Dialer/java/com/android/dialer/app/calllog/
DVisualVoicemailNotifier.java78 PendingIntent deleteIntent = in showNotifications() local
89 .setDeleteIntent(deleteIntent) in showNotifications()
/packages/services/BuiltInPrintService/src/com/android/bips/
DBuiltInPrintService.java325 PendingIntent deleteIntent = PendingIntent.getService(this, CERTIFICATE_REQUEST_ID, in notifyCertificateChange() local
349 .setDeleteIntent(deleteIntent) in notifyCertificateChange()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/admin/
DNotificationHelperTest.java335 isIntentEqualTo(getIntent(actual.deleteIntent), getIntent(expected.deleteIntent), in isNotificationEqualTo()
/packages/apps/Settings/src/com/android/settings/notification/history/
DNotificationStation.java561 if (n.deleteIntent != null) { in generateExtraText()
566 .append(formatPendingIntent(n.deleteIntent)); in generateExtraText()
/packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/unit/
DCellBroadcastAlertServiceTest.java875 assertTrue(notificationPosted.deleteIntent.isBroadcast()); in testAddToNotificationBarForWatch()
877 assertSame(notificationPosted.deleteIntent, notificationPosted.actions[0].actionIntent); in testAddToNotificationBarForWatch()