/frameworks/base/core/java/android/content/om/ |
D | OverlayInfo.java | 198 public final String baseCodePath; field in OverlayInfo 248 source.targetOverlayableName, source.category, source.baseCodePath, state, in OverlayInfo() 256 @NonNull String baseCodePath, int state, int userId, int priority, boolean isMutable) { in OverlayInfo() argument 258 category, baseCodePath, state, userId, priority, isMutable, in OverlayInfo() 265 @Nullable String category, @NonNull String baseCodePath, int state, int userId, in OverlayInfo() argument 272 this.baseCodePath = baseCodePath; in OverlayInfo() 288 baseCodePath = source.readString(); in OverlayInfo() 379 return baseCodePath; in getBaseCodePath() 406 if (baseCodePath == null) { in ensureValidState() 436 dest.writeString(baseCodePath); in writeToParcel() [all …]
|
/frameworks/base/services/core/java/com/android/server/pm/dex/ |
D | DexManager.java | 334 public void notifyPackageUpdated(String packageName, String baseCodePath, in notifyPackageUpdated() argument 336 cachePackageCodeLocation(packageName, baseCodePath, splitCodePaths, null, /*userId*/ -1); in notifyPackageUpdated() 380 private void cachePackageCodeLocation(String packageName, String baseCodePath, in cachePackageCodeLocation() argument 384 new PackageCodeLocations(packageName, baseCodePath, splitCodePaths)); in cachePackageCodeLocation() 388 pcl.updateCodeLocation(baseCodePath, splitCodePaths); in cachePackageCodeLocation() 720 public PackageCodeLocations(String packageName, String baseCodePath, in PackageCodeLocations() argument 725 updateCodeLocation(baseCodePath, splitCodePaths); in PackageCodeLocations() 728 public void updateCodeLocation(String baseCodePath, String[] splitCodePaths) { in updateCodeLocation() argument 729 mBaseCodePath = baseCodePath; in updateCodeLocation()
|
D | DexoptUtils.java | 405 String baseCodePath = new File(pkg.getBaseApkPath()).getParent(); in getSplitRelativeCodePaths() local 413 if (!basePath.equals(baseCodePath)) { in getSplitRelativeCodePaths() 415 baseCodePath); in getSplitRelativeCodePaths()
|
/frameworks/base/services/core/java/com/android/server/om/ |
D | IdmapManager.java | 131 Slog.d(TAG, "remove idmap for " + oi.baseCodePath); in removeIdmap() 134 return mIdmapDaemon.removeIdmap(oi.baseCodePath, userId); in removeIdmap() 136 Slog.w(TAG, "failed to remove idmap for " + oi.baseCodePath, e); in removeIdmap() 142 return mIdmapDaemon.idmapExists(oi.baseCodePath, oi.userId); in idmapExists()
|
D | OverlayManagerSettings.java | 77 @NonNull final String baseCodePath, boolean isMutable, boolean isEnabled, int priority, in init() argument 81 targetOverlayableName, baseCodePath, OverlayInfo.STATE_UNKNOWN, isEnabled, in init() 521 final String baseCodePath = XmlUtils.readStringAttribute(parser, ATTR_BASE_CODE_PATH); 531 baseCodePath, state, isEnabled, !isStatic, priority, category, isFabricated); 587 @Nullable final String targetOverlayableName, @NonNull final String baseCodePath, 595 mBaseCodePath = baseCodePath;
|
D | OverlayManagerServiceImpl.java | 724 overlayIdmap = new Pair<>(id, oi.baseCodePath); in dump() 784 paths.addNonApkPath(oi.baseCodePath); in getEnabledOverlayPaths() 786 paths.addApkPath(oi.baseCodePath); in getEnabledOverlayPaths() 828 overlayPackage, updatedOverlayInfo.baseCodePath, overlay.getOverlayName(), in updateState()
|
/frameworks/base/core/java/android/content/pm/parsing/ |
D | FrameworkParsingPackageUtils.java | 227 String baseCodePath, boolean skipVerify, boolean isStaticSharedLibrary, in getSigningDetails() argument 240 verified = ApkSignatureVerifier.unsafeGetCertsWithoutVerification(input, baseCodePath, in getSigningDetails() 243 verified = ApkSignatureVerifier.verify(input, baseCodePath, minSignatureScheme); in getSigningDetails() 259 baseCodePath + " has mismatched certificates"); in getSigningDetails()
|
D | ApkLiteParseUtils.java | 304 final String baseCodePath = apkRenamed ? new File(packageDir, in composePackageLiteFromApks() local 307 new PackageLite(codePath, baseCodePath, baseApk, splitNames, isFeatureSplits, in composePackageLiteFromApks()
|
/frameworks/base/core/java/com/android/internal/pm/parsing/ |
D | PackageParser2.java | 193 @NonNull String baseCodePath, @NonNull String codePath, in startParsingPackage() argument 195 return PackageImpl.forParsing(packageName, baseCodePath, codePath, manifestArray, in startParsingPackage()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/om/ |
D | OverlayManagerSettingsTests.java | 331 assertEquals("/data/app/com.test.overlay-1/base.apk", oi.baseCodePath); in testRestoreSingleUserSingleOverlay() 389 oi.baseCodePath, true, false,0, oi.category, oi.isFabricated); in insertSetting()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | VerifyingSession.java | 469 final String baseCodePath = mPackageLite.getBaseApkPath(); in sendPackageVerificationRequest() local 473 if (IncrementalManager.isIncrementalPath(baseCodePath)) { in sendPackageVerificationRequest() 475 baseCodePath, splitCodePaths); in sendPackageVerificationRequest()
|
D | InstallPackageHelper.java | 1152 final String baseCodePath = request.getPkg().getBaseApkPath(); in installPackagesLI() local 1157 .buildVerificationRootHashString(baseCodePath, splitCodePaths); in installPackagesLI()
|
/frameworks/base/core/java/android/content/pm/ |
D | PackageParser.java | 403 public final String baseCodePath; field in PackageParser.PackageLite 425 public PackageLite(String codePath, String baseCodePath, ApkLite baseApk, in PackageLite() argument 440 this.baseCodePath = baseCodePath; in PackageLite() 457 paths.add(baseCodePath); in getAllCodePaths() 1148 final File baseApk = new File(lite.baseCodePath); in parseClusterPackage() 1401 collectCertificates(pkg, new File(pkg.baseCodePath), skipVerify); in collectCertificatesInternal() 2073 + pkg.baseCodePath+ ": overlay ignored due to required system property: " in parseBaseApkCommon() 6785 public String baseCodePath; field in PackageParser.Package 7028 public void setApplicationInfoBaseCodePath(String baseCodePath) { in setApplicationInfoBaseCodePath() argument 7029 this.applicationInfo.setBaseCodePath(baseCodePath); in setApplicationInfoBaseCodePath() [all …]
|
D | ApplicationInfo.java | 2731 /** {@hide} */ public void setBaseCodePath(String baseCodePath) { sourceDir = baseCodePath; } in setBaseCodePath() argument
|
/frameworks/base/core/java/android/app/ |
D | ResourcesManager.java | 1680 String baseCodePath = appInfo.getBaseCodePath(); in applyNewResourceDirsLocked() local 1693 addApplicationPathsLocked(baseCodePath, copiedSplitDirs); in applyNewResourceDirsLocked() 1708 || key.mResDir.equals(baseCodePath) in applyNewResourceDirsLocked() 1711 baseCodePath, in applyNewResourceDirsLocked()
|
/frameworks/base/core/java/com/android/internal/pm/parsing/pkg/ |
D | PackageImpl.java | 425 public static PackageImpl forParsing(@NonNull String packageName, @NonNull String baseCodePath, in forParsing() argument 429 packageName, baseCodePath, codePath, manifestArray, isCoreApp, callback); in forParsing() 458 public static ParsingPackage forTesting(String packageName, String baseCodePath) { in forTesting() argument 459 return new PackageImpl(packageName, baseCodePath, baseCodePath, null, false, null); in forTesting()
|
/frameworks/base/core/java/com/android/internal/pm/pkg/parsing/ |
D | ParsingPackageUtils.java | 3271 String baseCodePath, boolean skipVerify, boolean isStaticSharedLibrary, 3282 verified = ApkSignatureVerifier.unsafeGetCertsWithoutVerification(input, baseCodePath, 3285 verified = ApkSignatureVerifier.verify(input, baseCodePath, minSignatureScheme); 3300 baseCodePath + " has mismatched certificates");
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 10881 Landroid/content/om/OverlayInfo;->baseCodePath:Ljava/lang/String; 12663 Landroid/content/pm/PackageParser$Package;->baseCodePath:Ljava/lang/String; 12743 Landroid/content/pm/PackageParser$PackageLite;->baseCodePath:Ljava/lang/String;
|