Home
last modified time | relevance | path

Searched refs:splitCodePaths (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/content/pm/
DPackageParser.java332 public final String[] splitCodePaths; field in PackageParser.PackageLite
345 String[] splitCodePaths, int[] splitRevisionCodes) { in PackageLite() argument
353 this.splitCodePaths = splitCodePaths; in PackageLite()
365 if (!ArrayUtils.isEmpty(splitCodePaths)) { in getAllCodePaths()
366 Collections.addAll(paths, splitCodePaths); in getAllCodePaths()
757 String[] splitCodePaths = null; in parseClusterPackageLite() local
761 splitCodePaths = new String[size]; in parseClusterPackageLite()
768 splitCodePaths[i] = apks.get(splitNames[i]).codePath; in parseClusterPackageLite()
774 return new PackageLite(codePath, baseApk, splitNames, splitCodePaths, in parseClusterPackageLite()
823 if (!ArrayUtils.isEmpty(lite.splitCodePaths)) { in parseClusterPackage()
[all …]
DApplicationInfo.java1213 … {@hide} */ public void setSplitCodePaths(String[] splitCodePaths) { splitSourceDirs = splitCodePa… in setSplitCodePaths() argument
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
DDefaultContainerService.java335 copyFile(pkg.splitCodePaths[i], targetDir, in copyPackageToContainerInner()
372 copyFile(pkg.splitCodePaths[i], target, "split_" + pkg.splitNames[i] + ".apk"); in copyPackageInner()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerService.java7113 pkg.setApplicationInfoSplitCodePaths(pkg.splitCodePaths);
7116 pkg.setApplicationInfoSplitResourcePaths(pkg.splitCodePaths);
7986 if (!ArrayUtils.isEmpty(pkg.splitCodePaths)) {
7987 for (int i = 0; i < pkg.splitCodePaths.length; i++) {
7990 if (splitShouldHaveCode && !apkHasCode(pkg.splitCodePaths[i])) {
7992 "Package " + pkg.splitCodePaths[i] + " code is missing");
13447 afterCodeFile, pkg.splitCodePaths));
13453 pkg.setApplicationInfoSplitCodePaths(pkg.splitCodePaths);
13456 pkg.setApplicationInfoSplitResourcePaths(pkg.splitCodePaths);
13702 afterCodeFile, pkg.splitCodePaths));
[all …]
DPackageInstallerSession.java788 final File splitFile = new File(existing.splitCodePaths[i]); in validateInstallLocked()