Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f7335ffb authored by Mathieu Chartier's avatar Mathieu Chartier Committed by Gerrit Code Review
Browse files

Merge "Rename profileSystemServer to shouldProfileSystemServer"

parents dab4c89c 3b05e4d7
Loading
Loading
Loading
Loading
+3 −4
Original line number Original line Diff line number Diff line
@@ -460,7 +460,7 @@ public class ZygoteInit {
        ZygoteHooks.gcAndFinalize();
        ZygoteHooks.gcAndFinalize();
    }
    }


    private static boolean profileSystemServer() {
    private static boolean shouldProfileSystemServer() {
        boolean defaultValue = SystemProperties.getBoolean("dalvik.vm.profilesystemserver",
        boolean defaultValue = SystemProperties.getBoolean("dalvik.vm.profilesystemserver",
                /*default=*/ false);
                /*default=*/ false);
        // Can't use DeviceConfig since it's not initialized at this point.
        // Can't use DeviceConfig since it's not initialized at this point.
@@ -492,7 +492,7 @@ public class ZygoteInit {
            }
            }
            // Capturing profiles is only supported for debug or eng builds since selinux normally
            // Capturing profiles is only supported for debug or eng builds since selinux normally
            // prevents it.
            // prevents it.
            if (profileSystemServer() && (Build.IS_USERDEBUG || Build.IS_ENG)) {
            if (shouldProfileSystemServer() && (Build.IS_USERDEBUG || Build.IS_ENG)) {
                try {
                try {
                    Log.d(TAG, "Preparing system server profile");
                    Log.d(TAG, "Preparing system server profile");
                    prepareSystemServerProfile(systemServerClasspath);
                    prepareSystemServerProfile(systemServerClasspath);
@@ -765,8 +765,7 @@ public class ZygoteInit {
            Zygote.applyDebuggerSystemProperty(parsedArgs);
            Zygote.applyDebuggerSystemProperty(parsedArgs);
            Zygote.applyInvokeWithSystemProperty(parsedArgs);
            Zygote.applyInvokeWithSystemProperty(parsedArgs);


            if (profileSystemServer()) {
            if (shouldProfileSystemServer()) {

                parsedArgs.mRuntimeFlags |= Zygote.PROFILE_SYSTEM_SERVER;
                parsedArgs.mRuntimeFlags |= Zygote.PROFILE_SYSTEM_SERVER;
            }
            }