Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/core/java/com/android/server/biometrics/sensors/
H A 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()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DChannelEditorListView.kt130 appControlRow.channelName.text = context.resources
142 lateinit var channelName: TextView
147 channelName = findViewById(R.id.app_name)
157 private lateinit var channelName: TextView
177 channelName = findViewById(R.id.channel_name)
207 channelName.text = nc.name ?: ""
H A DNotificationBlockingHelperManager.java172 public boolean isNonblockable(String packageName, String channelName) { in isNonblockable() argument
174 || mNonBlockablePkgs.contains(makeChannelKey(packageName, channelName)); in isNonblockable()
H A DNotificationInfo.java379 final TextView channelName = findViewById(R.id.channel_name);
381 channelName.setVisibility(View.GONE);
383 channelName.setText(mSingleNotificationChannel.getName());
H A DNotificationConversationInfo.java304 final TextView channelName = findViewById(R.id.parent_channel_name); in bindConversationDetails() local
305 channelName.setText(mNotificationChannel.getName()); in bindConversationDetails()
/aosp12/hardware/google/pixel/powerstats/dataproviders/
H A DIioEnergyMeterDataProvider.cpp87 const std::string channelName = words[1]; in parseEnabledRails() local
89 if (mChannelIds.count(channelName) == 0) { in parseEnabledRails()
91 {.id = id, .name = channelName, .subsystem = subsystemName}); in parseEnabledRails()
92 mChannelIds.emplace(channelName, id); in parseEnabledRails()
96 << channelName << ". Only the last occurrence of rail energy will " in parseEnabledRails()
/aosp12/packages/apps/Camera2/src/com/android/camera/util/
H A DCaptureDataSerializer.java188 String channelName[] = {"R", "G_even", "G_odd", "B"}; in toString() local
194 str.append(channelName[ch]); in toString()
/aosp12/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationHistoryProtoHelper.java108 String channelName = parser.readString(Notification.CHANNEL_NAME); in readNotification() local
109 notification.setChannelName(channelName); in readNotification()
110 stringPool.add(channelName); in readNotification()
H A 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()
/aosp12/packages/apps/TV/src/com/android/tv/search/
H A DTvProviderSearch.java309 String channelName = result.getTitle(); in fillProgramInfo() local
317 channelNumber, channelName, startUtcMillis, endUtcMillis)); in fillProgramInfo()
334 String channelName, in buildProgramDescription() argument
341 + channelName; in buildProgramDescription()
H A DDataManagerSearch.java286 String channelName, in buildProgramDescription() argument
293 + channelName; in buildProgramDescription()
/aosp12/frameworks/base/core/java/android/app/
H A DNotificationHistory.java164 public Builder setChannelName(String channelName) { in setChannelName() argument
165 mChannelName = channelName; in setChannelName()
/aosp12/packages/apps/TV/src/com/android/tv/dvr/ui/list/
H A DScheduleRowPresenter.java408 String channelName = getChannelNameText(row); in onBindRowViewHolder() local
411 (!TextUtils.isEmpty(programInfoText) && !TextUtils.isEmpty(channelName)) in onBindRowViewHolder()
414 viewHolder.mChannelNameView.setText(channelName); in onBindRowViewHolder()
/aosp12/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastAlertService.java725 CharSequence channelName = context.getText(channelTitleId); in addToNotificationBar() local
781 .setTicker(channelName) in addToNotificationBar()
821 builder.setContentTitle(channelName) in addToNotificationBar()
/aosp12/packages/apps/TV/tuner/src/com/android/tv/tuner/setup/
H A DScanFragment.java265 TextView channelName = (TextView) convertView.findViewById(R.id.channel_name); in getView() local
266 channelName.setText(mChannels.get(position).getName()); in getView()
/aosp12/packages/apps/TV/tuner/src/com/android/tv/tuner/tvinput/datamanager/
H A DChannelDataManager.java580 private void applyBatch(String channelName, ArrayList<ContentProviderOperation> operations) { in applyBatch() argument
584 Log.e(TAG, "Error updating EPG " + channelName, e); in applyBatch()