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/apps/Settings/src/com/android/settings/accessibility/
DHighContrastTextMigrationReceiver.java174 Intent deleteIntent = new Intent(context, HighContrastTextMigrationReceiver.class); in showNotification() local
175 deleteIntent.setAction(ACTION_NOTIFICATION_DISMISSED); in showNotification()
177 deleteIntent, PendingIntent.FLAG_IMMUTABLE); in showNotification()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/pbap/
DPbapStateMachine.java431 Intent deleteIntent = new Intent(); in createPbapNotification() local
432 deleteIntent.setClass(mService, BluetoothPbapService.class); in createPbapNotification()
433 deleteIntent.setAction(BluetoothPbapService.AUTH_CANCELLED_ACTION); in createPbapNotification()
459 deleteIntent, in createPbapNotification()
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
DCellBroadcastAlertService.java935 Intent deleteIntent = new Intent(intent); in addToNotificationBar() local
936 deleteIntent.putExtra(CellBroadcastAlertService.DISMISS_DIALOG, true); in addToNotificationBar()
943 deleteIntent, PendingIntent.FLAG_UPDATE_CURRENT in addToNotificationBar()
1090 Intent deleteIntent = new Intent(context, CellBroadcastInternalReceiver.class); in createMarkAsReadIntent() local
1093 deleteIntent.setData(Uri.parse("cbr://notification/" + UUID.randomUUID())); in createMarkAsReadIntent()
1094 deleteIntent.setAction(CellBroadcastReceiver.ACTION_MARK_AS_READ); in createMarkAsReadIntent()
1095 deleteIntent.putExtra(CellBroadcastReceiver.EXTRA_DELIVERY_TIME, deliveryTime); in createMarkAsReadIntent()
1096 deleteIntent.putExtra(CellBroadcastReceiver.EXTRA_NOTIF_ID, notificationId); in createMarkAsReadIntent()
1097 return deleteIntent; in createMarkAsReadIntent()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/opp/
DBluetoothOppNotification.java507 Intent deleteIntent = new Intent(mContext, BluetoothOppReceiver.class); in updateCompletedNotification() local
508 deleteIntent.setAction(Constants.ACTION_HIDE_COMPLETED_OUTBOUND_TRANSFER); in updateCompletedNotification()
527 deleteIntent, in updateCompletedNotification()
583 Intent deleteIntent = new Intent(mContext, BluetoothOppReceiver.class); in updateCompletedNotification() local
584 deleteIntent.setAction(Constants.ACTION_HIDE_COMPLETED_INBOUND_TRANSFER); in updateCompletedNotification()
603 deleteIntent, in updateCompletedNotification()
/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.java329 PendingIntent deleteIntent = PendingIntent.getService(this, CERTIFICATE_REQUEST_ID, in notifyCertificateChange() local
353 .setDeleteIntent(deleteIntent) in notifyCertificateChange()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/admin/
DNotificationHelperTest.java342 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.java1315 assertTrue(notificationPosted.deleteIntent.isBroadcast()); in testAddToNotificationBarForWatch()
1317 assertSame(notificationPosted.deleteIntent, notificationPosted.actions[0].actionIntent); in testAddToNotificationBarForWatch()