Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/biometrics/sensors/
DBiometricNotificationUtils.java65 final String channelName = "FaceEnrollNotificationChannel"; in showReEnrollmentNotification() local
67 showNotificationHelper(context, name, title, content, pendingIntent, channelName, in showReEnrollmentNotification()
101 final String channelName = "FingerprintBadCalibrationNotificationChannel"; in showBadCalibrationNotification() local
103 showNotificationHelper(context, name, title, content, pendingIntent, channelName, in showBadCalibrationNotification()
108 String content, PendingIntent pendingIntent, String channelName, in showNotificationHelper() argument
112 final NotificationChannel channel = new NotificationChannel(channelName, name, in showNotificationHelper()
114 final Notification notification = new Notification.Builder(context, channelName) in showNotificationHelper()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DChannelEditorListView.kt130 appControlRow.channelName.text = context.resources in <lambda>()
142 lateinit var channelName: TextView variable
147 channelName = findViewById(R.id.app_name) in onFinishInflate()
157 private lateinit var channelName: TextView variable
177 channelName = findViewById(R.id.channel_name) in onFinishInflate()
207 channelName.text = nc.name ?: "" in updateViews()
DNotificationBlockingHelperManager.java172 public boolean isNonblockable(String packageName, String channelName) { in isNonblockable() argument
174 || mNonBlockablePkgs.contains(makeChannelKey(packageName, channelName)); in isNonblockable()
DNotificationInfo.java379 final TextView channelName = findViewById(R.id.channel_name);
381 channelName.setVisibility(View.GONE);
383 channelName.setText(mSingleNotificationChannel.getName());
DNotificationConversationInfo.java304 final TextView channelName = findViewById(R.id.parent_channel_name); in bindConversationDetails() local
305 channelName.setText(mNotificationChannel.getName()); in bindConversationDetails()
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationHistoryProtoHelper.java108 String channelName = parser.readString(Notification.CHANNEL_NAME); in readNotification() local
109 notification.setChannelName(channelName); in readNotification()
110 stringPool.add(channelName); in readNotification()
DPreferencesHelper.java313 String channelName = parser.getAttributeValue(null, ATT_NAME); in readXml() local
316 if (!TextUtils.isEmpty(id) && !TextUtils.isEmpty(channelName)) { in readXml()
318 channelName, channelImportance); in readXml()
/frameworks/base/core/java/android/app/
DNotificationHistory.java164 public Builder setChannelName(String channelName) { in setChannelName() argument
165 mChannelName = channelName; in setChannelName()