Searched defs:codePath (Results 1 - 8 of 8) sorted by last modified time

/frameworks/base/services/core/java/com/android/server/pm/
H A DInstaller.java122 public int rmdex(String codePath, String instructionSet) { argument
130 builder.append(codePath);
H A DPackageManagerService.java423 // Mapping from provider base names (first directory in content URI codePath)
1587 + ps.name + "; removing system app. Last known codePath="
1592 expectingBetter.put(ps.name, ps.codePath);
1605 if (disabledPs.codePath == null || !disabledPs.codePath.exists()) {
1848 if (ps.codePath != null) {
1849 if (ps.codePath.isDirectory()) {
1850 FileUtils.deleteContents(ps.codePath);
1852 ps.codePath.delete();
1854 if (ps.resourcePath != null && !ps.resourcePath.equals(ps.codePath)) {
9113 createInstallArgsForExisting(int installFlags, String codePath, String resourcePath, String nativeLibraryRoot, String[] instructionSets) argument
9250 FileInstallArgs(String codePath, String resourcePath, String legacyNativeLibraryPath, String[] instructionSets) argument
9904 deriveCodePathName(String codePath) argument
[all...]
H A DPackageSetting.java32 PackageSetting(String name, String realName, File codePath, File resourcePath, argument
36 super(name, realName, codePath, resourcePath, legacyNativeLibraryPathString,
H A DPackageSettingBase.java54 File codePath; field in class:PackageSettingBase
112 PackageSettingBase(String name, String realName, File codePath, File resourcePath, argument
119 init(codePath, resourcePath, legacyNativeLibraryPathString, primaryCpuAbiString,
132 codePath = base.codePath;
166 void init(File codePath, File resourcePath, String legacyNativeLibraryPathString, argument
169 this.codePath = codePath;
170 this.codePathString = codePath.toString();
H A DPendingPackage.java24 PendingPackage(String name, String realName, File codePath, File resourcePath, argument
28 super(name, realName, codePath, resourcePath, legacyNativeLibraryPathString,
H A DSettings.java274 String realName, SharedUserSetting sharedUser, File codePath, File resourcePath,
278 PackageSetting p = getPackageLPw(name, origPackage, realName, sharedUser, codePath,
365 PackageSetting ret = addPackageLPw(name, p.realName, p.codePath, p.resourcePath,
381 PackageSetting addPackageLPw(String name, String realName, File codePath, File resourcePath, argument
393 p = new PackageSetting(name, realName, codePath, resourcePath,
462 String realName, SharedUserSetting sharedUser, File codePath, File resourcePath,
472 if (!p.codePath.equals(codePath)) {
479 + p.codePathString + " to " + codePath.toString());
483 Slog.i(PackageManagerService.TAG, "Package " + name + " codePath change
273 getPackageLPw(PackageParser.Package pkg, PackageSetting origPackage, String realName, SharedUserSetting sharedUser, File codePath, File resourcePath, String legacyNativeLibraryPathString, String primaryCpuAbi, String secondaryCpuAbi, int pkgFlags, UserHandle user, boolean add) argument
461 getPackageLPw(String name, PackageSetting origPackage, String realName, SharedUserSetting sharedUser, File codePath, File resourcePath, String legacyNativeLibraryPathString, String primaryCpuAbiString, String secondaryCpuAbiString, int vc, int pkgFlags, UserHandle installUser, boolean add, boolean allowInstall) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DApplicationInfo.java873 /** {@hide} */ public void setCodePath(String codePath) { scanSourceDir = codePath; } argument
H A DPackageParser.java109 // TODO: refactor "codePath" to "apkPath"
258 public final String codePath; field in class:PackageParser.PackageLite
268 public PackageLite(String codePath, ApkLite baseApk, String[] splitNames, argument
275 this.codePath = codePath;
276 this.baseCodePath = baseApk.codePath;
296 public final String codePath; field in class:PackageParser.ApkLite
306 public ApkLite(String codePath, String packageName, String splitName, int versionCode, argument
309 this.codePath = codePath;
1246 parseApkLite(String codePath, Resources res, XmlPullParser parser, AttributeSet attrs, int flags, Signature[] signatures) argument
4182 public String codePath; field in class:PackageParser.Package
[all...]

Completed in 87 milliseconds