Searched refs:oldRecord (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/services/core/java/com/android/server/am/ |
D | BroadcastRecord.java | 1049 @NonNull BroadcastRecord oldRecord) { in matchesDeliveryGroup() argument 1053 if (isMatchingKeyNull(newRecord) && isMatchingKeyNull(oldRecord) in matchesDeliveryGroup() 1055 return newRecord.intent.filterEquals(oldRecord.intent); in matchesDeliveryGroup() 1057 if (newMatchingFilter != null && !newMatchingFilter.asPredicate().test(oldRecord.intent)) { in matchesDeliveryGroup() 1060 return areMatchingKeysEqual(newRecord, oldRecord); in matchesDeliveryGroup() 1071 @NonNull BroadcastRecord oldRecord) { in areMatchingKeysEqual() argument 1073 final String oldNamespaceFragment = getDeliveryGroupMatchingNamespaceFragment(oldRecord); in areMatchingKeysEqual() 1079 final String oldKeyFragment = getDeliveryGroupMatchingKeyFragment(oldRecord); in areMatchingKeysEqual()
|
/frameworks/base/services/core/java/com/android/server/notification/ |
D | NotificationManagerService.java | 9798 @Nullable NotificationRecord oldRecord, String targetPkg, int targetUserId) { 9799 updateUriPermissions(newRecord, oldRecord, targetPkg, targetUserId, false); 9804 @Nullable NotificationRecord oldRecord, String targetPkg, int targetUserId, 9806 final String key = (newRecord != null) ? newRecord.getKey() : oldRecord.getKey(); 9810 final ArraySet<Uri> oldUris = (oldRecord != null) ? oldRecord.getGrantableUris() : null; 9822 if (oldRecord != null && permissionOwner == null) { 9823 permissionOwner = oldRecord.permissionOwner; 9836 destroyPermissionOwner(permissionOwner, UserHandle.getUserId(oldRecord.getUid()), key); 9864 UserHandle.getUserId(oldRecord.getUid()), targetPkg, targetUserId); 9871 UserHandle.getUserId(oldRecord.getUid()),
|