Home
last modified time | relevance | path

Searched refs:mNotificationChannel (Results 1 – 8 of 8) sorted by relevance

/packages/apps/Settings/tests/unit/src/com/android/settings/notification/
DChannelNotificationSettingsTest.java57 private NotificationChannel mNotificationChannel; field in ChannelNotificationSettingsTest
70 mNotificationChannel = new NotificationChannel(this.getClass().getName(), in setUp()
72 mNm.createNotificationChannel(mNotificationChannel); in setUp()
79 .putExtra(Settings.EXTRA_CHANNEL_ID, mNotificationChannel.getId()) in launchNotificationSetting_shouldNotCrash()
83 onView(allOf(withText(mNotificationChannel.getName().toString()))).check( in launchNotificationSetting_shouldNotCrash()
/packages/apps/Nfc/src/com/android/nfc/
DNfcBlockedNotification.java36 private NotificationChannel mNotificationChannel; field in NfcBlockedNotification
58 mNotificationChannel = new NotificationChannel(NFC_NOTIFICATION_CHANNEL, in onCreate()
62 notificationManager.createNotificationChannel(mNotificationChannel); in onCreate()
/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothPermissionRequest.java54 private NotificationChannel mNotificationChannel = null; field in BluetoothPermissionRequest
163 if (mNotificationChannel == null) { in onReceive()
164 mNotificationChannel = new NotificationChannel(BLUETOOTH_NOTIFICATION_CHANNEL, in onReceive()
167 notificationManager.createNotificationChannel(mNotificationChannel); in onReceive()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/bluetooth/
DBluetoothPermissionRequest.java54 private NotificationChannel mNotificationChannel = null; field in BluetoothPermissionRequest
163 if (mNotificationChannel == null) { in onReceive()
164 mNotificationChannel = new NotificationChannel(BLUETOOTH_NOTIFICATION_CHANNEL, in onReceive()
167 notificationManager.createNotificationChannel(mNotificationChannel); in onReceive()
/packages/apps/TV/src/com/android/tv/dvr/recorder/
DDvrRecordingService.java61 private NotificationChannel mNotificationChannel; field in DvrRecordingService
206 mNotificationChannel = in createNotificationChannel()
212 .createNotificationChannel(mNotificationChannel); in createNotificationChannel()
/packages/apps/Settings/src/com/android/settings/homepage/contextualcards/slices/
DNotificationChannelSlice.java486 final private NotificationChannel mNotificationChannel; field in NotificationChannelSlice.NotificationChannelState
491 mNotificationChannel = notificationChannel; in NotificationChannelState()
495 return mNotificationChannel; in getNotificationChannel()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/homepage/contextualcards/slices/
DNotificationChannelSlice.java485 final private NotificationChannel mNotificationChannel; field in NotificationChannelSlice.NotificationChannelState
490 mNotificationChannel = notificationChannel; in NotificationChannelState()
494 return mNotificationChannel; in getNotificationChannel()
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppNotification.java100 private NotificationChannel mNotificationChannel; field in BluetoothOppNotification
153 mNotificationChannel = new NotificationChannel(OPP_NOTIFICATION_CHANNEL, in BluetoothOppNotification()
157 mNotificationMgr.createNotificationChannel(mNotificationChannel); in BluetoothOppNotification()