Loading services/core/java/com/android/server/pm/PackageDexOptimizer.java +1 −10 Original line number Diff line number Diff line Loading @@ -438,16 +438,7 @@ public class PackageDexOptimizer { PackageDexUsage.DexUseInfo dexUseInfo = e.getValue(); pw.println(dex); pw.increaseIndent(); for (String isa : dexUseInfo.getLoaderIsas()) { String status = null; try { status = DexFile.getDexFileStatus(path, isa); } catch (IOException ioe) { status = "[Exception]: " + ioe.getMessage(); } pw.println(isa + ": " + status); } // TODO(calin): get the status of the oat file (needs installd call) pw.println("class loader context: " + dexUseInfo.getClassLoaderContext()); if (dexUseInfo.isUsedByOtherApps()) { pw.println("used be other apps: " + dexUseInfo.getLoadingPackages()); Loading Loading
services/core/java/com/android/server/pm/PackageDexOptimizer.java +1 −10 Original line number Diff line number Diff line Loading @@ -438,16 +438,7 @@ public class PackageDexOptimizer { PackageDexUsage.DexUseInfo dexUseInfo = e.getValue(); pw.println(dex); pw.increaseIndent(); for (String isa : dexUseInfo.getLoaderIsas()) { String status = null; try { status = DexFile.getDexFileStatus(path, isa); } catch (IOException ioe) { status = "[Exception]: " + ioe.getMessage(); } pw.println(isa + ": " + status); } // TODO(calin): get the status of the oat file (needs installd call) pw.println("class loader context: " + dexUseInfo.getClassLoaderContext()); if (dexUseInfo.isUsedByOtherApps()) { pw.println("used be other apps: " + dexUseInfo.getLoadingPackages()); Loading