Home
last modified time | relevance | path

Searched refs:packagePath (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/com/android/internal/app/
DIMediaContainerService.aidl24 String copyPackageToContainer(String packagePath, String containerId, String key, in copyPackageToContainer() argument
26 int copyPackage(String packagePath, in IParcelFileDescriptorFactory target); in copyPackage() argument
28 PackageInfoLite getMinimalPackageInfo(String packagePath, int flags, String abiOverride); in getMinimalPackageInfo() argument
34 long calculateInstalledSize(String packagePath, boolean isForwardLocked, String abiOverride); in calculateInstalledSize() argument
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
DDefaultContainerService.java87 public String copyPackageToContainer(String packagePath, String containerId, String key,
89 if (packagePath == null || containerId == null) {
105 final File packageFile = new File(packagePath);
111 Slog.w(TAG, "Failed to copy package at " + packagePath, e);
128 public int copyPackage(String packagePath, IParcelFileDescriptorFactory target) {
129 if (packagePath == null || target == null) {
135 final File packageFile = new File(packagePath);
139 Slog.w(TAG, "Failed to copy package at " + packagePath + ": " + e);
152 public PackageInfoLite getMinimalPackageInfo(String packagePath, int flags,
158 if (packagePath == null) {
[all …]
/frameworks/base/libs/androidfw/
DAssetManager.cpp241 bool AssetManager::addOverlayPath(const String8& packagePath, int32_t* cookie) in addOverlayPath() argument
243 const String8 idmapPath = idmapPathForPackagePath(packagePath); in addOverlayPath()
270 if (overlayPath != packagePath) { in addOverlayPath()
272 idmapPath.string(), packagePath.string(), overlayPath.string()); in addOverlayPath()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerService.java9663 String packagePath; field in PackageManagerService.AsecInstallArgs
9707 final long sizeBytes = imcs.calculateInstalledSize(packagePath, isFwdLocked(), in checkFreeStorage()
9753 return packagePath; in getCodePath()
9826 final File beforeCodeFile = new File(packagePath); in doRename()
9828 final File afterCodeFile = new File(packagePath); in doRename()
9853 packagePath = monolithicFile.getAbsolutePath(); in setMountPath()
9857 resourcePath = packagePath; in setMountPath()
9860 packagePath = mountFile.getAbsolutePath(); in setMountPath()
9861 resourcePath = packagePath; in setMountPath()
/frameworks/base/core/java/android/content/pm/
DPackageParser.java660 final String packagePath = packageFile.getAbsolutePath(); in parseMonolithicPackageLite() local
661 return new PackageLite(packagePath, baseApk, null, null, null); in parseMonolithicPackageLite()