Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothPermissionRequest.java128 Intent deleteIntent = new Intent(BluetoothDevice.ACTION_CONNECTION_ACCESS_REPLY); in onReceive() local
129 deleteIntent.setPackage("com.android.bluetooth"); in onReceive()
130 deleteIntent.putExtra(BluetoothDevice.EXTRA_DEVICE, mDevice); in onReceive()
131 deleteIntent.putExtra(BluetoothDevice.EXTRA_CONNECTION_ACCESS_RESULT, in onReceive()
133 deleteIntent.putExtra(BluetoothDevice.EXTRA_ACCESS_REQUEST_TYPE, mRequestType); in onReceive()
182 .setDeleteIntent(PendingIntent.getBroadcast(context, 0, deleteIntent, in onReceive()
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
DCellBroadcastAlertService.java802 Intent deleteIntent = new Intent(intent); in addToNotificationBar() local
803 deleteIntent.putExtra(CellBroadcastAlertService.DISMISS_DIALOG, true); in addToNotificationBar()
805 deleteIntent, PendingIntent.FLAG_ONE_SHOT in addToNotificationBar()
906 Intent deleteIntent = new Intent(context, CellBroadcastInternalReceiver.class); in createMarkAsReadIntent() local
907 deleteIntent.setAction(CellBroadcastReceiver.ACTION_MARK_AS_READ); in createMarkAsReadIntent()
908 deleteIntent.putExtra(CellBroadcastReceiver.EXTRA_DELIVERY_TIME, deliveryTime); in createMarkAsReadIntent()
909 return deleteIntent; in createMarkAsReadIntent()
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/service/
DLocationAccessCheck.java576 Intent deleteIntent = new Intent(mContext, NotificationDeleteHandler.class); in createNotificationForLocationUser() local
577 deleteIntent.putExtra(EXTRA_PACKAGE_NAME, pkgName); in createNotificationForLocationUser()
578 deleteIntent.putExtra(EXTRA_SESSION_ID, sessionId); in createNotificationForLocationUser()
579 deleteIntent.putExtra(EXTRA_UID, pkg.applicationInfo.uid); in createNotificationForLocationUser()
580 deleteIntent.putExtra(EXTRA_USER, user); in createNotificationForLocationUser()
581 deleteIntent.setFlags(FLAG_RECEIVER_FOREGROUND); in createNotificationForLocationUser()
605 .setDeleteIntent(getBroadcast(mContext, 0, deleteIntent, in createNotificationForLocationUser()
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DPbapStateMachine.java387 Intent deleteIntent = new Intent(); in createPbapNotification() local
388 deleteIntent.setClass(mService, BluetoothPbapService.class); in createPbapNotification()
389 deleteIntent.setAction(BluetoothPbapService.AUTH_CANCELLED_ACTION); in createPbapNotification()
413 PendingIntent.getBroadcast(mService, 0, deleteIntent, in createPbapNotification()
/packages/modules/Connectivity/tests/cts/hostside/app/src/com/android/cts/net/hostside/
DMyNotificationListenerService.java52 if (notification.deleteIntent != null) { in onNotificationPosted()
53 sender.send("delete", notification.deleteIntent); in onNotificationPosted()
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppNotification.java450 Intent deleteIntent = new Intent(Constants.ACTION_COMPLETE_HIDE).setClassName( in updateCompletedNotification() local
469 PendingIntent.getBroadcast(mContext, 0, deleteIntent, in updateCompletedNotification()
520 Intent deleteIntent = new Intent(Constants.ACTION_COMPLETE_HIDE).setClassName( in updateCompletedNotification() local
538 PendingIntent.getBroadcast(mContext, 0, deleteIntent, in updateCompletedNotification()
/packages/apps/Car/Notification/src/com/android/car/notification/
DCarNotificationDiff.java206 || !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/Car/libs/car-messenger-common/src/com/android/car/messenger/common/
DBaseNotificationDelegate.java266 PendingIntent deleteIntent = createServiceIntent(conversationKey, in postNotification() local
269 builder.setDeleteIntent(deleteIntent); in postNotification()
/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/apps/Settings/src/com/android/settings/notification/history/
DNotificationStation.java561 if (n.deleteIntent != null) { in generateExtraText()
566 .append(formatPendingIntent(n.deleteIntent)); in generateExtraText()