HomeSort by relevance Sort by last modified time
    Searched defs:splitCodePaths (Results 1 - 3 of 3) sorted by null

  /frameworks/base/services/core/java/com/android/server/pm/dex/
DexoptUtils.java 353 String[] splitCodePaths = info.getSplitCodePaths();
354 String[] splitRelativeCodePaths = new String[splitCodePaths.length];
355 for (int i = 0; i < splitCodePaths.length; i++) {
356 File pathFile = new File(splitCodePaths[i]);
  /frameworks/base/services/core/java/com/android/server/pm/
PackageDexOptimizer.java 160 String[] splitCodePaths = pkg.applicationInfo.getSplitCodePaths();
166 + (splitCodePaths == null ? "null" : Arrays.toString(splitCodePaths)));
  /frameworks/base/core/java/android/content/pm/
PackageParser.java 418 public final String[] splitCodePaths;
434 String[] splitCodePaths, int[] splitRevisionCodes) {
445 this.splitCodePaths = splitCodePaths;
459 if (!ArrayUtils.isEmpty(splitCodePaths)) {
460 Collections.addAll(paths, splitCodePaths);
    [all...]

Completed in 895 milliseconds