| commit | d854e6e14b5c0c2a8f50b798278ecfc13ffbf604 | [log] [tgz] |
|---|---|---|
| author | Frederick Mayle <fmayle@google.com> | Tue Aug 05 09:50:55 2025 -0700 |
| committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Wed Aug 06 14:36:20 2025 -0700 |
| tree | a3456fb273b01d41984d62fc032ccecce133e050 | |
| parent | 26a284678bafeab32db33b568ddb96398bc7ab4b [diff] |
isolated_storage_service: VM RAM size 73 -> 79 The worst case memory usage of the VM in debuggable mode was 90 MB, so give the VM 6 MB more to match the target memory usage. Bug: 243630590 Test: launch VM, check RAM size, /proc/meminfo Flag: EXEMPT . (cherry picked from https://googleplex-android-review.googlesource.com/q/commit:ae040ece0bafaec823c1e3bf076fba1d6d538b47) Merged-In: I42d92159bec342da20ce24a895a8d12198575371 Change-Id: I42d92159bec342da20ce24a895a8d12198575371
diff --git a/service/java/com/android/server/appsearch/isolated_storage_service/IsolatedStorageServiceManager.java b/service/java/com/android/server/appsearch/isolated_storage_service/IsolatedStorageServiceManager.java index d13dc94..71159c3 100644 --- a/service/java/com/android/server/appsearch/isolated_storage_service/IsolatedStorageServiceManager.java +++ b/service/java/com/android/server/appsearch/isolated_storage_service/IsolatedStorageServiceManager.java
@@ -79,7 +79,7 @@ "ro.appsearch.feature.enable_isolated_storage"; public static final String SYSTEM_PROPERTY_ENABLE_NONPROTECTED_APPSEARCH_VM = "ro.enable.nonprotected_appsearch_vm"; - public static final long DEFAULT_MEMORY_BYTES = 73 * 1024 * 1024; + public static final long DEFAULT_MEMORY_BYTES = 79 * 1024 * 1024; public static final boolean DEFAULT_ISOLATED_STORAGE_DISABLED = false; public static final boolean DEFAULT_ISOLATED_STORAGE_MIGRATION_DISABLED = false; public static final boolean DEFAULT_ISOLATED_STORAGE_DELETE_CE_VMS = false;