commit | 519546ce3ed970633953d6597e0a0e08fcb55197 | [log] [tgz] |
---|---|---|
author | Steven Moreland <smoreland@google.com> | Wed Oct 13 10:58:06 2021 -0700 |
committer | Steven Moreland <smoreland@google.com> | Wed Oct 13 11:01:10 2021 -0700 |
tree | 277977df64243223994115128b3a207f3314499f | |
parent | b0a2857ec519ba641a0ed0b4d95e2e159b580aee [diff] |
getBlobAshmemSize -> getOpenAshmemSize This API returns the total size of all ashmem memory that is in FDs that is owned by a Parcel object. It was renamed a while ago, but the name was never updated in Java. Bug: 202029388 Test: N/A Change-Id: Icc428063083110952cf3951721d69cbb919429b1
diff --git a/src/com/android/settings/notification/history/NotificationStation.java b/src/com/android/settings/notification/history/NotificationStation.java index fe8b168..bd5b83a 100644 --- a/src/com/android/settings/notification/history/NotificationStation.java +++ b/src/com/android/settings/notification/history/NotificationStation.java
@@ -640,7 +640,7 @@ .append(' ') .append(bold(getString(R.string.notification_log_details_ashmem))) .append(delim) - .append(String.valueOf(p.getBlobAshmemSize())) + .append(String.valueOf(p.getOpenAshmemSize())) .append("\n"); } return sb;