Home
last modified time | relevance | path

Searched refs:baseCodePath (Results 1 – 19 of 19) 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.java693 overlayIdmap = new Pair<>(id, oi.baseCodePath); in dump()
749 paths.addNonApkPath(oi.baseCodePath); in getEnabledOverlayPaths()
751 paths.addApkPath(oi.baseCodePath); in getEnabledOverlayPaths()
785 updatedOverlayInfo.baseCodePath, overlay.getOverlayName(), userId); in updateState()
/frameworks/base/services/core/java/com/android/server/pm/dex/
DDexManager.java342 public void notifyPackageUpdated(String packageName, String baseCodePath, in notifyPackageUpdated() argument
344 cachePackageCodeLocation(packageName, baseCodePath, splitCodePaths, null, /*userId*/ -1); in notifyPackageUpdated()
390 private void cachePackageCodeLocation(String packageName, String baseCodePath, in cachePackageCodeLocation() argument
394 new PackageCodeLocations(packageName, baseCodePath, splitCodePaths)); in cachePackageCodeLocation()
398 pcl.updateCodeLocation(baseCodePath, splitCodePaths); in cachePackageCodeLocation()
1088 public PackageCodeLocations(String packageName, String baseCodePath, in PackageCodeLocations() argument
1093 updateCodeLocation(baseCodePath, splitCodePaths); in PackageCodeLocations()
1096 public void updateCodeLocation(String baseCodePath, String[] splitCodePaths) { in updateCodeLocation() argument
1097 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.java58 public static PackageImpl forParsing(@NonNull String packageName, @NonNull String baseCodePath, in forParsing() argument
60 return new PackageImpl(packageName, baseCodePath, codePath, manifestArray, isCoreApp); in forParsing()
86 public static ParsingPackage forTesting(String packageName, String baseCodePath) { in forTesting() argument
87 return new PackageImpl(packageName, baseCodePath, baseCodePath, null, false); in forTesting()
384 public PackageImpl setBaseCodePath(@NonNull String baseCodePath) { in setBaseCodePath() argument
385 this.mBaseApkPath = TextUtils.safeIntern(baseCodePath); in setBaseCodePath()
DParsedPackage.java46 ParsedPackage setBaseCodePath(String baseCodePath); in setBaseCodePath() argument
/frameworks/base/services/core/java/com/android/server/pm/parsing/
DPackageParser2.java202 @NonNull String baseCodePath, @NonNull String codePath,
204 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/content/pm/parsing/
DApkLiteParseUtils.java240 final String baseCodePath = apkRenamed ? new File(packageDir, in composePackageLiteFromApks() local
243 new PackageLite(codePath, baseCodePath, baseApk, splitNames, isFeatureSplits, in composePackageLiteFromApks()
DParsingPackageUtils.java3030 String baseCodePath, boolean skipVerify, boolean isStaticSharedLibrary,
3045 baseCodePath, SigningDetails.SignatureSchemeVersion.JAR);
3047 verified = ApkSignatureVerifier.verify(baseCodePath, minSignatureScheme);
3051 "Failed collecting certificates for " + baseCodePath, e);
3062 baseCodePath + " has mismatched certificates");
/frameworks/base/core/java/android/app/
DResourcesManager.java1466 String baseCodePath = appInfo.getBaseCodePath(); in applyNewResourceDirsLocked() local
1479 addApplicationPathsLocked(baseCodePath, copiedSplitDirs); in applyNewResourceDirsLocked()
1494 || key.mResDir.equals(baseCodePath) in applyNewResourceDirsLocked()
1497 baseCodePath, in applyNewResourceDirsLocked()
/frameworks/base/core/java/android/content/pm/
DPackageParser.java395 public final String baseCodePath; field in PackageParser.PackageLite
417 public PackageLite(String codePath, String baseCodePath, ApkLite baseApk, in PackageLite() argument
432 this.baseCodePath = baseCodePath; in PackageLite()
449 paths.add(baseCodePath); in getAllCodePaths()
1126 final File baseApk = new File(lite.baseCodePath); in parseClusterPackage()
1379 collectCertificates(pkg, new File(pkg.baseCodePath), skipVerify); in collectCertificatesInternal()
2036 + pkg.baseCodePath+ ": overlay ignored due to required system property: " in parseBaseApkCommon()
6728 public String baseCodePath; field in PackageParser.Package
6971 public void setApplicationInfoBaseCodePath(String baseCodePath) { in setApplicationInfoBaseCodePath() argument
6972 this.applicationInfo.setBaseCodePath(baseCodePath); in setApplicationInfoBaseCodePath()
[all …]
DApplicationInfo.java2515 /** {@hide} */ public void setBaseCodePath(String baseCodePath) { sourceDir = baseCodePath; } in setBaseCodePath() argument
/frameworks/base/services/core/java/com/android/server/
DPinnerService.java729 String baseCodePath = appInfo.getBaseCodePath(); in pinApp() local
732 files = DexFile.getDexFileOutputPaths(baseCodePath, arch); in pinApp()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerShellCommand.java1899 String baseCodePath = null; in runSnapshotProfile() local
1907 baseCodePath = packageInfo.applicationInfo.getBaseCodePath(); in runSnapshotProfile()
1909 codePath = baseCodePath; in runSnapshotProfile()
1933 final String outputFileSuffix = isBootImage || Objects.equals(baseCodePath, codePath) in runSnapshotProfile()
DPackageManagerService.java19948 final String baseCodePath = request.installResult.pkg.getBaseApkPath(); in installPackagesLI() local
19953 .buildVerificationRootHashString(baseCodePath, splitCodePaths); in installPackagesLI()
/frameworks/base/boot/hiddenapi/
Dhiddenapi-max-target-o.txt13759 Landroid/content/om/OverlayInfo;->baseCodePath:Ljava/lang/String;
15541 Landroid/content/pm/PackageParser$Package;->baseCodePath:Ljava/lang/String;
15621 Landroid/content/pm/PackageParser$PackageLite;->baseCodePath:Ljava/lang/String;