Searched refs:packagePath (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/com/android/internal/app/
H A DIMediaContainerService.aidl24 String copyPackageToContainer(String packagePath, String containerId, String key,
26 int copyPackage(String packagePath, in IParcelFileDescriptorFactory target);
28 PackageInfoLite getMinimalPackageInfo(String packagePath, int flags, String abiOverride);
34 long calculateInstalledSize(String packagePath, boolean isForwardLocked, String abiOverride);
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
H A DDefaultContainerService.java76 * @param packagePath absolute path to the package to be copied. Can be
87 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);
121 * @param packagePath absolute path to the package to be copied. Can be
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
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DShortcutService.java1007 final File packagePath = new File(getUserBitmapFilePath(userId), packageName);
1008 if (!packagePath.isDirectory()) {
1011 if (!(FileUtils.deleteContents(packagePath) && packagePath.delete())) {
1012 Slog.w(TAG, "Unable to remove directory " + packagePath);
1038 final File packagePath = new File(getUserBitmapFilePath(userId),
1040 if (!packagePath.isDirectory()) {
1041 packagePath.mkdirs();
1042 if (!packagePath.isDirectory()) {
1043 throw new IOException("Unable to create directory " + packagePath);
[all...]
H A DPackageManagerService.java13550 String packagePath; field in class:PackageManagerService.AsecInstallArgs
13625 return packagePath;
13693 final File beforeCodeFile = new File(packagePath);
13695 final File afterCodeFile = new File(packagePath);
13721 packagePath = monolithicFile.getAbsolutePath();
13725 resourcePath = packagePath;
13728 packagePath = mountFile.getAbsolutePath();
13729 resourcePath = packagePath;
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp229 bool AssetManager::addOverlayPath(const String8& packagePath, int32_t* cookie) argument
231 const String8 idmapPath = idmapPathForPackagePath(packagePath);
258 if (overlayPath != packagePath) {
260 idmapPath.string(), packagePath.string(), overlayPath.string());
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java700 final String packagePath = packageFile.getAbsolutePath();
701 return new PackageLite(packagePath, baseApk, null, null, null);

Completed in 253 milliseconds