51 lines
2.0 KiB
Diff
51 lines
2.0 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Daniel Micay <danielmicay@gmail.com>
|
|
Date: Wed, 11 Sep 2019 06:43:55 -0400
|
|
Subject: [PATCH] pass through fullPreload to libcore
|
|
|
|
---
|
|
core/java/com/android/internal/os/ZygoteInit.java | 12 ++++++------
|
|
1 file changed, 6 insertions(+), 6 deletions(-)
|
|
|
|
diff --git a/core/java/com/android/internal/os/ZygoteInit.java b/core/java/com/android/internal/os/ZygoteInit.java
|
|
index b9460f56d003..467183355515 100644
|
|
--- a/core/java/com/android/internal/os/ZygoteInit.java
|
|
+++ b/core/java/com/android/internal/os/ZygoteInit.java
|
|
@@ -128,7 +128,7 @@ public class ZygoteInit {
|
|
static void preload(TimingsTraceLog bootTimingsTraceLog, boolean fullPreload) {
|
|
Log.d(TAG, "begin preload");
|
|
bootTimingsTraceLog.traceBegin("BeginPreload");
|
|
- beginPreload();
|
|
+ beginPreload(fullPreload);
|
|
bootTimingsTraceLog.traceEnd(); // BeginPreload
|
|
bootTimingsTraceLog.traceBegin("PreloadClasses");
|
|
preloadClasses();
|
|
@@ -150,7 +150,7 @@ public class ZygoteInit {
|
|
// Ask the WebViewFactory to do any initialization that must run in the zygote process,
|
|
// for memory sharing purposes.
|
|
WebViewFactory.prepareWebViewInZygote();
|
|
- endPreload();
|
|
+ endPreload(fullPreload);
|
|
warmUpJcaProviders();
|
|
Log.d(TAG, "end preload");
|
|
|
|
@@ -168,14 +168,14 @@ public class ZygoteInit {
|
|
preload(new TimingsTraceLog("ZygoteInitTiming_lazy", Trace.TRACE_TAG_DALVIK));
|
|
}
|
|
|
|
- private static void beginPreload() {
|
|
+ private static void beginPreload(boolean fullPreload) {
|
|
Log.i(TAG, "Calling ZygoteHooks.beginPreload()");
|
|
|
|
- ZygoteHooks.onBeginPreload();
|
|
+ ZygoteHooks.onBeginPreload(fullPreload);
|
|
}
|
|
|
|
- private static void endPreload() {
|
|
- ZygoteHooks.onEndPreload();
|
|
+ private static void endPreload(boolean fullPreload) {
|
|
+ ZygoteHooks.onEndPreload(fullPreload);
|
|
|
|
Log.i(TAG, "Called ZygoteHooks.endPreload()");
|
|
}
|