Home
last modified time | relevance | path

Searched refs:baseCodePath (Results 1 – 20 of 20) sorted by relevance

/frameworks/base/core/java/android/content/om/
DOverlayInfo.java182 public final String baseCodePath; field in OverlayInfo
232 source.targetOverlayableName, source.category, source.baseCodePath, state, in OverlayInfo()
240 @NonNull String baseCodePath, int state, int userId, int priority, boolean isMutable) { in OverlayInfo() argument
242 category, baseCodePath, state, userId, priority, isMutable, in OverlayInfo()
249 @Nullable String category, @NonNull String baseCodePath, int state, int userId, in OverlayInfo() argument
256 this.baseCodePath = baseCodePath; in OverlayInfo()
272 baseCodePath = source.readString(); in OverlayInfo()
361 return baseCodePath; in getBaseCodePath()
385 if (baseCodePath == null) { in ensureValidState()
415 dest.writeString(baseCodePath); in writeToParcel()
[all …]
/frameworks/base/services/core/java/com/android/server/om/
DIdmapManager.java106 Slog.d(TAG, "remove idmap for " + oi.baseCodePath); in removeIdmap()
109 return mIdmapDaemon.removeIdmap(oi.baseCodePath, userId); in removeIdmap()
111 Slog.w(TAG, "failed to remove idmap for " + oi.baseCodePath, e); in removeIdmap()
117 return mIdmapDaemon.idmapExists(oi.baseCodePath, oi.userId); in idmapExists()
DOverlayManagerSettings.java76 @NonNull final String baseCodePath, boolean isMutable, boolean isEnabled, int priority, in init() argument
80 targetOverlayableName, baseCodePath, OverlayInfo.STATE_UNKNOWN, isEnabled, in init()
513 final String baseCodePath = XmlUtils.readStringAttribute(parser, ATTR_BASE_CODE_PATH);
523 baseCodePath, state, isEnabled, !isStatic, priority, category, isFabricated);
579 @Nullable final String targetOverlayableName, @NonNull final String baseCodePath,
587 mBaseCodePath = baseCodePath;
DOverlayManagerServiceImpl.java694 overlayIdmap = new Pair<>(id, oi.baseCodePath); in dump()
755 paths.addNonApkPath(oi.baseCodePath); in getEnabledOverlayPaths()
757 paths.addApkPath(oi.baseCodePath); in getEnabledOverlayPaths()
791 updatedOverlayInfo.baseCodePath, overlay.getOverlayName(), userId); in updateState()
/frameworks/base/core/java/android/content/pm/parsing/
DFrameworkParsingPackageUtils.java227 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()
DApkLiteParseUtils.java300 final String baseCodePath = apkRenamed ? new File(packageDir, in composePackageLiteFromApks() local
303 new PackageLite(codePath, baseCodePath, baseApk, splitNames, isFeatureSplits, in composePackageLiteFromApks()
/frameworks/base/services/core/java/com/android/server/pm/dex/
DDexManager.java360 public void notifyPackageUpdated(String packageName, String baseCodePath, in notifyPackageUpdated() argument
362 cachePackageCodeLocation(packageName, baseCodePath, splitCodePaths, null, /*userId*/ -1); in notifyPackageUpdated()
408 private void cachePackageCodeLocation(String packageName, String baseCodePath, in cachePackageCodeLocation() argument
412 new PackageCodeLocations(packageName, baseCodePath, splitCodePaths)); in cachePackageCodeLocation()
416 pcl.updateCodeLocation(baseCodePath, splitCodePaths); in cachePackageCodeLocation()
1108 public PackageCodeLocations(String packageName, String baseCodePath, in PackageCodeLocations() argument
1113 updateCodeLocation(baseCodePath, splitCodePaths); in PackageCodeLocations()
1116 public void updateCodeLocation(String baseCodePath, String[] splitCodePaths) { in updateCodeLocation() argument
1117 mBaseCodePath = baseCodePath; in updateCodeLocation()
DDexoptUtils.java404 String baseCodePath = new File(pkg.getBaseApkPath()).getParent(); in getSplitRelativeCodePaths() local
412 if (!basePath.equals(baseCodePath)) { in getSplitRelativeCodePaths()
414 baseCodePath); in getSplitRelativeCodePaths()
/frameworks/base/services/core/java/com/android/server/pm/parsing/pkg/
DPackageImpl.java60 public static PackageImpl forParsing(@NonNull String packageName, @NonNull String baseCodePath, in forParsing() argument
62 return new PackageImpl(packageName, baseCodePath, codePath, manifestArray, isCoreApp); in forParsing()
91 public static ParsingPackage forTesting(String packageName, String baseCodePath) { in forTesting() argument
92 return new PackageImpl(packageName, baseCodePath, baseCodePath, null, false); in forTesting()
/frameworks/base/services/core/java/com/android/server/pm/parsing/
DPackageParser2.java211 @NonNull String baseCodePath, @NonNull String codePath,
213 return PackageImpl.forParsing(packageName, baseCodePath, codePath, manifestArray,
/frameworks/base/services/tests/servicestests/src/com/android/server/om/
DOverlayManagerSettingsTests.java330 assertEquals("/data/app/com.test.overlay-1/base.apk", oi.baseCodePath); in testRestoreSingleUserSingleOverlay()
388 oi.baseCodePath, true, false,0, oi.category, oi.isFabricated); in insertSetting()
/frameworks/base/core/java/android/app/
DResourcesManager.java1472 String baseCodePath = appInfo.getBaseCodePath(); in applyNewResourceDirsLocked() local
1485 addApplicationPathsLocked(baseCodePath, copiedSplitDirs); in applyNewResourceDirsLocked()
1500 || key.mResDir.equals(baseCodePath) in applyNewResourceDirsLocked()
1503 baseCodePath, in applyNewResourceDirsLocked()
/frameworks/base/core/java/android/content/pm/
DPackageParser.java403 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()
6784 public String baseCodePath; field in PackageParser.Package
7027 public void setApplicationInfoBaseCodePath(String baseCodePath) { in setApplicationInfoBaseCodePath() argument
7028 this.applicationInfo.setBaseCodePath(baseCodePath); in setApplicationInfoBaseCodePath()
[all …]
DApplicationInfo.java2626 /** {@hide} */ public void setBaseCodePath(String baseCodePath) { sourceDir = baseCodePath; } in setBaseCodePath() argument
/frameworks/base/services/core/java/com/android/server/pm/
DVerificationParams.java420 final String baseCodePath = mPackageLite.getBaseApkPath(); in sendPackageVerificationRequest() local
423 baseCodePath, splitCodePaths); in sendPackageVerificationRequest()
DPackageManagerShellCommand.java2043 String baseCodePath = null; in runSnapshotProfile() local
2051 baseCodePath = packageInfo.applicationInfo.getBaseCodePath(); in runSnapshotProfile()
2053 codePath = baseCodePath; in runSnapshotProfile()
2077 final String outputFileSuffix = isBootImage || Objects.equals(baseCodePath, codePath) in runSnapshotProfile()
DInstallPackageHelper.java1025 final String baseCodePath = request.mInstallResult.mPkg.getBaseApkPath(); in installPackagesLI() local
1030 .buildVerificationRootHashString(baseCodePath, splitCodePaths); in installPackagesLI()
/frameworks/base/services/core/java/com/android/server/
DPinnerService.java765 String baseCodePath = appInfo.getBaseCodePath(); in pinApp() local
768 files = DexFile.getDexFileOutputPaths(baseCodePath, arch); in pinApp()
/frameworks/base/services/core/java/com/android/server/pm/pkg/parsing/
DParsingPackageUtils.java3122 String baseCodePath, boolean skipVerify, boolean isStaticSharedLibrary,
3133 verified = ApkSignatureVerifier.unsafeGetCertsWithoutVerification(input, baseCodePath,
3136 verified = ApkSignatureVerifier.verify(input, baseCodePath, minSignatureScheme);
3152 baseCodePath + " has mismatched certificates");
/frameworks/base/boot/hiddenapi/
Dhiddenapi-max-target-o.txt10881 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;