Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/notification/
DNotificationManagerService.java4827 NotificationRecord oldRecord) {
4829 if (isNotificationAppropriateToBubble(r, pkg, userId, oldRecord)) {
4840 NotificationRecord oldRecord) {
4872 boolean bubbleUpdate = oldRecord != null
4873 && (oldRecord.getNotification().flags & FLAG_BUBBLE) != 0;
6565 @Nullable NotificationRecord oldRecord, String targetPkg, int targetUserId) {
6566 final String key = (newRecord != null) ? newRecord.getKey() : oldRecord.getKey();
6570 final ArraySet<Uri> oldUris = (oldRecord != null) ? oldRecord.getGrantableUris() : null;
6582 if (oldRecord != null && permissionOwner == null) {
6583 permissionOwner = oldRecord.permissionOwner;
[all …]
/frameworks/base/services/core/java/com/android/server/
DLocationManagerService.java2587 UpdateRecord oldRecord = receiver.mUpdateRecords.put(name, record); in requestLocationUpdatesLocked() local
2588 if (oldRecord != null) { in requestLocationUpdatesLocked()
2589 oldRecord.disposeLocked(false); in requestLocationUpdatesLocked()
/frameworks/base/services/core/java/com/android/server/am/
DActivityManagerService.java15447 final BroadcastRecord oldRecord = in broadcastIntentLocked() local
15449 if (oldRecord != null) { in broadcastIntentLocked()
15451 if (oldRecord.resultTo != null) { in broadcastIntentLocked()
15452 final BroadcastQueue oldQueue = broadcastQueueForIntent(oldRecord.intent); in broadcastIntentLocked()
15454 oldQueue.performReceiveLocked(oldRecord.callerApp, oldRecord.resultTo, in broadcastIntentLocked()
15455 oldRecord.intent, in broadcastIntentLocked()
15457 false, false, oldRecord.userId); in broadcastIntentLocked()