HomeSort by relevance Sort by last modified time
    Searched defs:splitCodePaths (Results 1 - 5 of 5) 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]);
ArtManagerService.java 229 String[] splitCodePaths = info.applicationInfo.getSplitCodePaths();
230 if (!pathFound && (splitCodePaths != null)) {
231 for (int i = splitCodePaths.length - 1; i >= 0; i--) {
232 if (splitCodePaths[i].equals(codePath)) {
475 if (!ArrayUtils.isEmpty(pkg.splitCodePaths)) {
476 for (int i = 0; i < pkg.splitCodePaths.length; i++) {
478 result.put(pkg.splitCodePaths[i], ArtManager.getProfileName(pkg.splitNames[i]));
  /frameworks/base/services/core/java/com/android/server/pm/
PackageDexOptimizer.java 185 String[] splitCodePaths = pkg.applicationInfo.getSplitCodePaths();
191 + (splitCodePaths == null ? "null" : Arrays.toString(splitCodePaths)));
    [all...]
  /frameworks/base/core/java/android/content/pm/
PackageParser.java 411 public final String[] splitCodePaths;
427 String[] splitCodePaths, int[] splitRevisionCodes) {
439 this.splitCodePaths = splitCodePaths;
453 if (!ArrayUtils.isEmpty(splitCodePaths)) {
454 Collections.addAll(paths, splitCodePaths);
    [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-stubs.jar 

Completed in 609 milliseconds