Merge "Construct the UidState in case of not found during unparceling" into tm-dev am: 0fe49ee574 am: 51904bf4b7

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/18563201

Change-Id: Iad623170d76e88fcc420ad82be43b0a80c2e2e0b
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Jing Ji
2022-05-24 19:40:04 +00:00
committed by Automerger Merge Worker

View File

@@ -1182,7 +1182,16 @@ public final class ProcessStats implements Parcelable {
+ " " + proc);
mProcesses.put(procName, uid, proc);
mUidStates.get(uid).addProcess(proc);
UidState uidState = mUidStates.get(uid);
if (uidState == null) {
// This is not expected, log a warning and construct a new UID state.
if (DEBUG_PARCEL) {
Slog.w(TAG, "Couldn't find the common UID " + uid + " for " + proc);
}
uidState = new UidState(this, uid);
mUidStates.put(uid, uidState);
}
uidState.addProcess(proc);
}
}