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
This commit is contained in:
Steven Moreland
2021-10-13 10:58:06 -07:00
parent b0a2857ec5
commit 519546ce3e

View File

@@ -640,7 +640,7 @@ public class NotificationStation extends SettingsPreferenceFragment {
.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;