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;