Merge "Increase the limit on the size of PowerStats log element" into tm-qpr-dev am: 22070d53a1

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

Change-Id: I8d530c33dd9cb6263c18c9f59252f842a95c9528
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Dmitri Plotnikov
2022-10-10 23:26:49 +00:00
committed by Automerger Merge Worker

View File

@@ -53,7 +53,7 @@ public class PowerStatsDataStorage {
private static class DataElement {
private static final int LENGTH_FIELD_WIDTH = 4;
private static final int MAX_DATA_ELEMENT_SIZE = 1000;
private static final int MAX_DATA_ELEMENT_SIZE = 32768;
private byte[] mData;