Home
last modified time | relevance | path

Searched refs:mNotificationId (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/screenrecord/
H A DRecordingService.java92 private int mNotificationId = NOTIF_BASE_ID; field in RecordingService
151 mNotificationId = NOTIF_BASE_ID + (int) SystemClock.uptimeMillis(); in onStartCommand()
213 mNotificationManager.cancelAsUser(null, mNotificationId, currentUser); in onStartCommand()
282 startForeground(mNotificationId, builder.build()); in createErrorNotification()
320 startForeground(mNotificationId, builder.build()); in createRecordingNotification()
447 mNotificationManager.notifyAsUser(null, mNotificationId, in saveRecording()
455 mNotificationManager.notifyAsUser(null, mNotificationId, notification, in saveRecording()
460 mNotificationManager.cancelAsUser(null, mNotificationId, currentUser); in saveRecording()
/aosp14/frameworks/base/services/core/java/com/android/server/am/
H A DAppRestrictionController.java450 private int[] mNotificationId; field in AppRestrictionController.RestrictionSettings.PkgSettings
568 if (mNotificationId == null) { in getNotificationId()
571 return mNotificationId[notificationType]; in getNotificationId()
577 if (mNotificationId == null) { in setNotificationId()
578 mNotificationId = new int[NotificationHelper.NOTIFICATION_TYPE_LAST]; in setNotificationId()
580 mNotificationId[notificationType] = notificationId; in setNotificationId()
601 if (mNotificationId != null) { in clone()
602 newObj.mNotificationId = Arrays.copyOf(mNotificationId, mNotificationId.length); in clone()
625 && Arrays.equals(otherSettings.mNotificationId, mNotificationId); in equals()
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
H A DBubble.java160 private int mNotificationId; field in Bubble
576 mNotificationId = entry.getStatusBarNotification().getId(); in setEntry()
665 return mNotificationId; in getNotificationId()