/frameworks/base/services/core/java/com/android/server/pm/parsing/pkg/ |
D | AndroidPackageUtils.java | 67 String[] splitCodePaths = pkg.getSplitCodePaths(); in getAllCodePathsExcludingResourceOnly() local 68 if (!ArrayUtils.isEmpty(splitCodePaths)) { in getAllCodePathsExcludingResourceOnly() 69 for (int i = 0; i < splitCodePaths.length; i++) { in getAllCodePathsExcludingResourceOnly() 71 paths.add(splitCodePaths[i]); in getAllCodePathsExcludingResourceOnly() 86 String[] splitCodePaths = pkg.getSplitCodePaths(); in getAllCodePaths() local 87 if (!ArrayUtils.isEmpty(splitCodePaths)) { in getAllCodePaths() 88 Collections.addAll(paths, splitCodePaths); in getAllCodePaths()
|
/frameworks/base/services/core/java/com/android/server/pm/dex/ |
D | DexManager.java | 335 String[] splitCodePaths) { in notifyPackageUpdated() argument 336 cachePackageCodeLocation(packageName, baseCodePath, splitCodePaths, null, /*userId*/ -1); in notifyPackageUpdated() 381 String[] splitCodePaths, String[] dataDirs, int userId) { in cachePackageCodeLocation() argument 384 new PackageCodeLocations(packageName, baseCodePath, splitCodePaths)); in cachePackageCodeLocation() 388 pcl.updateCodeLocation(baseCodePath, splitCodePaths); in cachePackageCodeLocation() 721 String[] splitCodePaths) { in PackageCodeLocations() argument 725 updateCodeLocation(baseCodePath, splitCodePaths); in PackageCodeLocations() 728 public void updateCodeLocation(String baseCodePath, String[] splitCodePaths) { in updateCodeLocation() argument 731 if (splitCodePaths != null) { in updateCodeLocation() 732 for (String split : splitCodePaths) { in updateCodeLocation()
|
D | DexoptUtils.java | 406 String[] splitCodePaths = pkg.getSplitCodePaths(); in getSplitRelativeCodePaths() local 407 String[] splitRelativeCodePaths = new String[ArrayUtils.size(splitCodePaths)]; in getSplitRelativeCodePaths() 409 File pathFile = new File(splitCodePaths[i]); in getSplitRelativeCodePaths()
|
D | ArtManagerService.java | 237 String[] splitCodePaths = info.applicationInfo.getSplitCodePaths(); in snapshotAppProfile() local 238 if (!pathFound && (splitCodePaths != null)) { in snapshotAppProfile() 239 for (int i = splitCodePaths.length - 1; i >= 0; i--) { in snapshotAppProfile() 240 if (splitCodePaths[i].equals(codePath)) { in snapshotAppProfile()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/dex/ |
D | DexoptUtilsTest.java | 81 String[] splitCodePaths = new String[]{ in createMockApplicationInfo() local 92 String[] splitNames = new String[splitCodePaths.length]; in createMockApplicationInfo() 93 int[] splitRevisionCodes = new int[splitCodePaths.length]; in createMockApplicationInfo() 97 splitDependencies = new SparseArray<>(splitCodePaths.length); in createMockApplicationInfo() 112 splitCodePaths, in createMockApplicationInfo()
|
/frameworks/base/core/java/com/android/internal/pm/parsing/pkg/ |
D | ParsedPackage.java | 66 ParsedPackage setSplitCodePaths(String[] splitCodePaths); in setSplitCodePaths() argument
|
D | PackageImpl.java | 192 protected String[] splitCodePaths; field in PackageImpl 756 public PackageImpl asSplit(String[] splitNames, String[] splitCodePaths, in asSplit() argument 759 this.splitCodePaths = splitCodePaths; in asSplit() 825 splitCodePaths[index], in getSplits() 1336 return splitCodePaths == null ? EmptyArray.STRING : splitCodePaths; in getSplitCodePaths() 2663 appInfo.setSplitCodePaths(ArrayUtils.size(splitCodePaths) == 0 ? null : splitCodePaths); 2664 appInfo.setSplitResourcePaths(ArrayUtils.size(splitCodePaths) == 0 ? null : splitCodePaths); 3026 public PackageImpl setSplitCodePaths(@Nullable String[] splitCodePaths) { 3027 this.splitCodePaths = splitCodePaths; 3028 if (splitCodePaths != null) { [all …]
|
/frameworks/base/core/java/android/content/pm/parsing/ |
D | ApkLiteParseUtils.java | 275 String[] splitCodePaths = null; in composePackageLiteFromApks() local 284 splitCodePaths = new String[size]; in composePackageLiteFromApks() 297 splitCodePaths[i] = apkRenamed ? new File(packageDir, in composePackageLiteFromApks() 308 usesSplitNames, configForSplits, splitCodePaths, splitRevisionCodes, in composePackageLiteFromApks()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | PackageDexOptimizer.java | 286 String[] splitCodePaths = pkg.getSplitCodePaths(); in performDexOptLI() local 292 + (splitCodePaths == null ? "null" : Arrays.toString(splitCodePaths))); in performDexOptLI()
|
D | VerifyingSession.java | 470 final String[] splitCodePaths = mPackageLite.getSplitApkPaths(); in sendPackageVerificationRequest() local 475 baseCodePath, splitCodePaths); in sendPackageVerificationRequest()
|
D | InstallPackageHelper.java | 1153 final String[] splitCodePaths = request.getPkg().getSplitCodePaths(); in installPackagesLI() local 1157 .buildVerificationRootHashString(baseCodePath, splitCodePaths); in installPackagesLI()
|
/frameworks/base/core/java/android/content/pm/ |
D | PackageParser.java | 405 public final String[] splitCodePaths; field in PackageParser.PackageLite 427 String[] configForSplit, String[] splitCodePaths, int[] splitRevisionCodes) { in PackageLite() argument 441 this.splitCodePaths = splitCodePaths; in PackageLite() 458 if (!ArrayUtils.isEmpty(splitCodePaths)) { in getAllCodePaths() 459 Collections.addAll(paths, splitCodePaths); in getAllCodePaths() 1049 String[] splitCodePaths = null; in parseClusterPackageLite() local 1057 splitCodePaths = new String[size]; in parseClusterPackageLite() 1068 splitCodePaths[i] = apk.codePath; in parseClusterPackageLite() 1075 usesSplitNames, configForSplits, splitCodePaths, splitRevisionCodes); in parseClusterPackageLite() 1158 pkg.splitCodePaths = lite.splitCodePaths; in parseClusterPackage() [all …]
|
D | ApplicationInfo.java | 2732 … {@hide} */ public void setSplitCodePaths(String[] splitCodePaths) { splitSourceDirs = splitCodePa… in setSplitCodePaths() argument
|
/frameworks/base/core/java/com/android/internal/pm/pkg/parsing/ |
D | ParsingPackage.java | 131 String[] splitCodePaths, in asSplit() argument
|
D | ParsingPackageUtils.java | 3226 String[] splitCodePaths, boolean skipVerify) { 3248 if (!ArrayUtils.isEmpty(splitCodePaths) && !isFrameworkResSplit) { 3249 for (int i = 0; i < splitCodePaths.length; i++) { 3252 splitCodePaths[i],
|
/frameworks/base/services/tests/PackageManagerServiceTests/unit/src/com/android/server/pm/test/parsing/parcelling/ |
D | AndroidPackageTest.kt | 641 expect.that(after.splitCodePaths).asList() in <lambda>()
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 12728 Landroid/content/pm/PackageParser$Package;->splitCodePaths:[Ljava/lang/String; 12754 Landroid/content/pm/PackageParser$PackageLite;->splitCodePaths:[Ljava/lang/String;
|