Searched refs:oldRecord (Results 1 – 4 of 4) sorted by relevance
/aosp12/packages/services/Car/service/src/com/android/car/storagemonitoring/ |
H A D | IoStatsTracker.java | 82 final IoStatsEntry oldRecord = mTotal.get(uid); in update() 86 if (oldRecord == null) { in update() 93 if (oldRecord.representsSameMetrics(newRecord)) { in update() 97 newStats = new IoStatsEntry(newRecord.delta(oldRecord), in update() 98 oldRecord.runtimeMillis + mSampleWindowMs); in update() 105 newStats = new IoStatsEntry(newRecord.delta(oldRecord), in update() 106 oldRecord.runtimeMillis + mSampleWindowMs); in update() 115 newTotal.append(uid, oldRecord); in update()
|
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
H A D | SimPhonebookRecordCache.java | 502 AdnRecord oldRecord = mSimPbRecords.get(index - 1); in handleUpdatePhonebookRecordDone() local 503 int adnRecordIndex = oldRecord.getRecId(); in handleUpdatePhonebookRecordDone()
|
/aosp12/frameworks/base/services/core/java/com/android/server/notification/ |
H A D | NotificationManagerService.java | 8487 @Nullable NotificationRecord oldRecord, String targetPkg, int targetUserId) { 8488 updateUriPermissions(newRecord, oldRecord, targetPkg, targetUserId, false); 8493 @Nullable NotificationRecord oldRecord, String targetPkg, int targetUserId, 8495 final String key = (newRecord != null) ? newRecord.getKey() : oldRecord.getKey(); 8499 final ArraySet<Uri> oldUris = (oldRecord != null) ? oldRecord.getGrantableUris() : null; 8511 if (oldRecord != null && permissionOwner == null) { 8512 permissionOwner = oldRecord.permissionOwner; 8525 destroyPermissionOwner(permissionOwner, UserHandle.getUserId(oldRecord.getUid()), key); 8553 UserHandle.getUserId(oldRecord.getUid()), targetPkg, targetUserId); 8560 UserHandle.getUserId(oldRecord.getUid()),
|
/aosp12/frameworks/base/services/core/java/com/android/server/am/ |
H A D | ActivityManagerService.java | 13487 final BroadcastRecord oldRecord = in broadcastIntentLocked() local 13489 if (oldRecord != null) { in broadcastIntentLocked() 13491 if (oldRecord.resultTo != null) { in broadcastIntentLocked() 13492 final BroadcastQueue oldQueue = broadcastQueueForIntent(oldRecord.intent); in broadcastIntentLocked() 13494 oldQueue.performReceiveLocked(oldRecord.callerApp, oldRecord.resultTo, in broadcastIntentLocked() 13495 oldRecord.intent, in broadcastIntentLocked() 13497 false, false, oldRecord.userId); in broadcastIntentLocked()
|