Home
last modified time | relevance | path

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

/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.java166 public boolean isNonblockable(String packageName, String channelName) { in isNonblockable() argument
168 || mNonBlockablePkgs.contains(makeChannelKey(packageName, channelName)); in isNonblockable()
DNotificationInfo.java351 final TextView channelName = findViewById(R.id.channel_name);
353 channelName.setVisibility(View.GONE);
355 channelName.setText(mSingleNotificationChannel.getName());
DNotificationConversationInfo.java319 final TextView channelName = findViewById(R.id.parent_channel_name); in bindConversationDetails() local
320 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.java304 String channelName = parser.getAttributeValue(null, ATT_NAME); in readXml() local
307 if (!TextUtils.isEmpty(id) && !TextUtils.isEmpty(channelName)) { in readXml()
309 channelName, channelImportance); in readXml()
/frameworks/base/core/java/android/app/
DNotificationHistory.java166 public Builder setChannelName(String channelName) { in setChannelName() argument
167 mChannelName = channelName; in setChannelName()
/frameworks/base/services/core/java/com/android/server/biometrics/face/
DFaceService.java318 final String channelName = "FaceEnrollNotificationChannel"; in onAcquired() local
320 NotificationChannel channel = new NotificationChannel(channelName, name, in onAcquired()
322 Notification notification = new Notification.Builder(getContext(), channelName) in onAcquired()