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

Commit ee503da8 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Close print writers"

parents e780433c 390b2423
Loading
Loading
Loading
Loading
+68 −64
Original line number Diff line number Diff line
@@ -18729,7 +18729,7 @@ public class PackageManagerService extends IPackageManager.Stub
        return true;
    }
    private final class ClearStorageConnection implements ServiceConnection {
    private static final class ClearStorageConnection implements ServiceConnection {
        IMediaContainerService mContainerService;
        @Override
@@ -21440,7 +21440,7 @@ Slog.v(TAG, ":: stepped forward, applying functor at tag " + parser.getName());
                // the given package is involved with.
                if (dumpState.onTitlePrinted()) pw.println();
                final IndentingPrintWriter ipw = new IndentingPrintWriter(pw, "  ", 120);
                try (final IndentingPrintWriter ipw = new IndentingPrintWriter(pw, "  ", 120)) {
                    ipw.println();
                    ipw.println("Frozen packages:");
                    ipw.increaseIndent();
@@ -21453,11 +21453,12 @@ Slog.v(TAG, ":: stepped forward, applying functor at tag " + parser.getName());
                    }
                    ipw.decreaseIndent();
                }
            }
            if (!checkin && dumpState.isDumping(DumpState.DUMP_VOLUMES) && packageName == null) {
                if (dumpState.onTitlePrinted()) pw.println();
                final IndentingPrintWriter ipw = new IndentingPrintWriter(pw, "  ", 120);
                try (final IndentingPrintWriter ipw = new IndentingPrintWriter(pw, "  ", 120)) {
                    ipw.println();
                    ipw.println("Loaded volumes:");
                    ipw.increaseIndent();
@@ -21470,6 +21471,7 @@ Slog.v(TAG, ":: stepped forward, applying functor at tag " + parser.getName());
                    }
                    ipw.decreaseIndent();
                }
            }
            if (!checkin && dumpState.isDumping(DumpState.DUMP_SERVICE_PERMISSIONS)
                    && packageName == null) {
@@ -21597,7 +21599,7 @@ Slog.v(TAG, ":: stepped forward, applying functor at tag " + parser.getName());
    }
    private void dumpDexoptStateLPr(PrintWriter pw, String packageName) {
        final IndentingPrintWriter ipw = new IndentingPrintWriter(pw, "  ");
        try (final IndentingPrintWriter ipw = new IndentingPrintWriter(pw, "  ")) {
            ipw.println();
            ipw.println("Dexopt state:");
            ipw.increaseIndent();
@@ -21622,9 +21624,10 @@ Slog.v(TAG, ":: stepped forward, applying functor at tag " + parser.getName());
                ipw.decreaseIndent();
            }
        }
    }
    private void dumpCompilerStatsLPr(PrintWriter pw, String packageName) {
        final IndentingPrintWriter ipw = new IndentingPrintWriter(pw, "  ");
        try (final IndentingPrintWriter ipw = new IndentingPrintWriter(pw, "  ")) {
            ipw.println();
            ipw.println("Compiler stats:");
            ipw.increaseIndent();
@@ -21654,6 +21657,7 @@ Slog.v(TAG, ":: stepped forward, applying functor at tag " + parser.getName());
                ipw.decreaseIndent();
            }
        }
    }
    private String dumpDomainString(String packageName) {
        List<IntentFilterVerificationInfo> iviList = getIntentFilterVerifications(packageName)