Searched refs:splitCodePaths (Results 1 – 8 of 8) sorted by relevance
/frameworks/base/services/core/java/com/android/server/pm/dex/ |
D | DexManager.java | 203 String[] splitCodePaths) { in notifyPackageUpdated() argument 204 cachePackageCodeLocation(packageName, baseCodePath, splitCodePaths, null, /*userId*/ -1); in notifyPackageUpdated() 246 String[] splitCodePaths, String[] dataDirs, int userId) { in cachePackageCodeLocation() argument 249 new PackageCodeLocations(packageName, baseCodePath, splitCodePaths)); in cachePackageCodeLocation() 253 pcl.updateCodeLocation(baseCodePath, splitCodePaths); in cachePackageCodeLocation() 537 String[] splitCodePaths) { in PackageCodeLocations() argument 541 updateCodeLocation(baseCodePath, splitCodePaths); in PackageCodeLocations() 544 public void updateCodeLocation(String baseCodePath, String[] splitCodePaths) { in updateCodeLocation() argument 547 if (splitCodePaths != null) { in updateCodeLocation() 548 for (String split : splitCodePaths) { in updateCodeLocation()
|
/frameworks/base/core/java/android/content/pm/split/ |
D | SplitAssetDependencyLoader.java | 51 mSplitPaths = new String[pkg.splitCodePaths.length + 1]; in SplitAssetDependencyLoader() 53 System.arraycopy(pkg.splitCodePaths, 0, mSplitPaths, 1, pkg.splitCodePaths.length); in SplitAssetDependencyLoader()
|
D | DefaultSplitAssetLoader.java | 42 mSplitCodePaths = pkg.splitCodePaths; in DefaultSplitAssetLoader()
|
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/ |
D | DefaultContainerService.java | 338 copyFile(pkg.splitCodePaths[i], targetDir, in copyPackageToContainerInner() 375 copyFile(pkg.splitCodePaths[i], target, "split_" + pkg.splitNames[i] + ".apk"); in copyPackageInner()
|
/frameworks/base/core/java/android/content/pm/ |
D | PackageParser.java | 403 public final String[] splitCodePaths; field in PackageParser.PackageLite 419 String[] splitCodePaths, int[] splitRevisionCodes) { in PackageLite() argument 430 this.splitCodePaths = splitCodePaths; in PackageLite() 444 if (!ArrayUtils.isEmpty(splitCodePaths)) { in getAllCodePaths() 445 Collections.addAll(paths, splitCodePaths); in getAllCodePaths() 912 String[] splitCodePaths = null; in parseClusterPackageLite() local 919 splitCodePaths = new String[size]; in parseClusterPackageLite() 930 splitCodePaths[i] = apk.codePath; in parseClusterPackageLite() 937 configForSplits, splitCodePaths, splitRevisionCodes); in parseClusterPackageLite() 1169 pkg.splitCodePaths = lite.splitCodePaths; in parseClusterPackage() [all …]
|
D | ApplicationInfo.java | 1501 … {@hide} */ public void setSplitCodePaths(String[] splitCodePaths) { splitSourceDirs = splitCodePa… in setSplitCodePaths() argument
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
D | PackageParserTest.java | 206 assertTrue(Arrays.equals(a.splitCodePaths, b.splitCodePaths)); in assertPackagesEqual() 439 pkg.splitCodePaths = new String[] { "foo6" }; in setKnownFields()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | PackageInstallerSession.java | 831 final File splitFile = new File(existing.splitCodePaths[i]); in validateInstallLocked()
|