Home
last modified time | relevance | path

Searched refs:newRecord (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/telecomm/java/android/telecom/Logging/
H A DEventManager.java293 EventRecord newRecord = new EventRecord(recordEntry); in event() local
294 addEventRecord(newRecord); in event()
367 oldEventLog.forEach((newRecord -> { in changeEventCacheSize()
368 Loggable recordEntry = newRecord.getRecordEntry(); in changeEventCacheSize()
379 mEventRecords.add(newRecord); in changeEventCacheSize()
380 mCallEventRecordMap.put(recordEntry, newRecord); in changeEventCacheSize()
404 private void addEventRecord(EventRecord newRecord) { in addEventRecord() argument
405 Loggable recordEntry = newRecord.getRecordEntry(); in addEventRecord()
416 mEventRecords.add(newRecord); in addEventRecord()
417 mCallEventRecordMap.put(recordEntry, newRecord); in addEventRecord()
[all …]
/aosp14/frameworks/base/services/core/java/com/android/server/am/
H A DBroadcastRecord.java1189 private static boolean matchesDeliveryGroup(@NonNull BroadcastRecord newRecord, in matchesDeliveryGroup() argument
1191 final IntentFilter newMatchingFilter = getDeliveryGroupMatchingFilter(newRecord); in matchesDeliveryGroup()
1194 if (isMatchingKeyNull(newRecord) && isMatchingKeyNull(oldRecord) in matchesDeliveryGroup()
1196 return newRecord.intent.filterEquals(oldRecord.intent); in matchesDeliveryGroup()
1201 return areMatchingKeysEqual(newRecord, oldRecord); in matchesDeliveryGroup()
1211 private static boolean areMatchingKeysEqual(@NonNull BroadcastRecord newRecord, in areMatchingKeysEqual() argument
1213 final String newNamespaceFragment = getDeliveryGroupMatchingNamespaceFragment(newRecord); in areMatchingKeysEqual()
1219 final String newKeyFragment = getDeliveryGroupMatchingKeyFragment(newRecord); in areMatchingKeysEqual()
H A DActivityManagerService.java5480 final PendingIntentRecord newRecord = new PendingIntentRecord( in sendIntentSender() local
5483 return newRecord.sendWithResult(caller, code, intent, resolvedType, allowlistToken, in sendIntentSender()
/aosp14/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationManagerService.java1517 InlineReplyUriRecord newRecord = new InlineReplyUriRecord(
1522 r = newRecord;
9428 void updateUriPermissions(@Nullable NotificationRecord newRecord,
9430 updateUriPermissions(newRecord, oldRecord, targetPkg, targetUserId, false);
9434 void updateUriPermissions(@Nullable NotificationRecord newRecord,
9437 final String key = (newRecord != null) ? newRecord.getKey() : oldRecord.getKey();
9440 final ArraySet<Uri> newUris = (newRecord != null) ? newRecord.getGrantableUris() : null;
9450 if (newRecord != null && permissionOwner == null) {
9451 permissionOwner = newRecord.permissionOwner;
9509 if (newRecord != null) {
[all …]