Searched refs:oldRecord (Results 1 – 3 of 3) sorted by relevance
/aosp14/frameworks/base/services/core/java/com/android/server/am/ |
H A D | BroadcastQueueImpl.java | 260 final BroadcastRecord oldRecord = in enqueueBroadcastLocked() local 262 if (oldRecord != null) { in enqueueBroadcastLocked() 264 if (oldRecord.resultTo != null) { in enqueueBroadcastLocked() 266 oldRecord.mIsReceiverAppRunning = true; in enqueueBroadcastLocked() 267 performReceiveLocked(oldRecord, oldRecord.resultToApp, oldRecord.resultTo, in enqueueBroadcastLocked() 268 oldRecord.intent, in enqueueBroadcastLocked() 270 false, false, oldRecord.shareIdentity, oldRecord.userId, in enqueueBroadcastLocked() 271 oldRecord.callingUid, r.callingUid, r.callerPackage, in enqueueBroadcastLocked() 273 oldRecord.resultToApp != null in enqueueBroadcastLocked() 274 ? oldRecord.resultToApp.mState.getCurProcState() in enqueueBroadcastLocked() [all …]
|
H A D | BroadcastRecord.java | 1190 @NonNull BroadcastRecord oldRecord) { in matchesDeliveryGroup() argument 1194 if (isMatchingKeyNull(newRecord) && isMatchingKeyNull(oldRecord) in matchesDeliveryGroup() 1196 return newRecord.intent.filterEquals(oldRecord.intent); in matchesDeliveryGroup() 1198 if (newMatchingFilter != null && !newMatchingFilter.asPredicate().test(oldRecord.intent)) { in matchesDeliveryGroup() 1201 return areMatchingKeysEqual(newRecord, oldRecord); in matchesDeliveryGroup() 1212 @NonNull BroadcastRecord oldRecord) { in areMatchingKeysEqual() argument 1214 final String oldNamespaceFragment = getDeliveryGroupMatchingNamespaceFragment(oldRecord); in areMatchingKeysEqual() 1220 final String oldKeyFragment = getDeliveryGroupMatchingKeyFragment(oldRecord); in areMatchingKeysEqual()
|
/aosp14/frameworks/base/services/core/java/com/android/server/notification/ |
H A D | NotificationManagerService.java | 9429 @Nullable NotificationRecord oldRecord, String targetPkg, int targetUserId) { 9430 updateUriPermissions(newRecord, oldRecord, targetPkg, targetUserId, false); 9435 @Nullable NotificationRecord oldRecord, String targetPkg, int targetUserId, 9437 final String key = (newRecord != null) ? newRecord.getKey() : oldRecord.getKey(); 9441 final ArraySet<Uri> oldUris = (oldRecord != null) ? oldRecord.getGrantableUris() : null; 9453 if (oldRecord != null && permissionOwner == null) { 9454 permissionOwner = oldRecord.permissionOwner; 9467 destroyPermissionOwner(permissionOwner, UserHandle.getUserId(oldRecord.getUid()), key); 9495 UserHandle.getUserId(oldRecord.getUid()), targetPkg, targetUserId); 9502 UserHandle.getUserId(oldRecord.getUid()),
|