Searched defs:codePath (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/services/core/java/com/android/server/pm/
H A DPendingPackage.java24 PendingPackage(String name, String realName, File codePath, File resourcePath, argument
28 super(name, realName, codePath, resourcePath, legacyNativeLibraryPathString,
H A DPackageSetting.java32 PackageSetting(String name, String realName, File codePath, File resourcePath, argument
36 super(name, realName, codePath, resourcePath, legacyNativeLibraryPathString,
H A DInstaller.java122 public int rmdex(String codePath, String instructionSet) { argument
130 builder.append(codePath);
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 DSettings.java282 String realName, SharedUserSetting sharedUser, File codePath, File resourcePath,
286 PackageSetting p = getPackageLPw(name, origPackage, realName, sharedUser, codePath,
373 PackageSetting ret = addPackageLPw(name, p.realName, p.codePath, p.resourcePath,
389 PackageSetting addPackageLPw(String name, String realName, File codePath, File resourcePath, argument
401 p = new PackageSetting(name, realName, codePath, resourcePath,
470 String realName, SharedUserSetting sharedUser, File codePath, File resourcePath,
480 if (!p.codePath.equals(codePath)) {
487 + p.codePathString + " to " + codePath.toString());
491 Slog.i(PackageManagerService.TAG, "Package " + name + " codePath change
281 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
469 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...]
H A DPackageManagerService.java441 // Mapping from provider base names (first directory in content URI codePath)
1609 + ps.name + "; removing system app. Last known codePath="
1614 expectingBetter.put(ps.name, ps.codePath);
1627 if (disabledPs.codePath == null || !disabledPs.codePath.exists()) {
1876 if (ps.codePath != null) {
1877 if (ps.codePath.isDirectory()) {
1878 FileUtils.deleteContents(ps.codePath);
1880 ps.codePath.delete();
1882 if (ps.resourcePath != null && !ps.resourcePath.equals(ps.codePath)) {
9303 createInstallArgsForExisting(int installFlags, String codePath, String resourcePath, String nativeLibraryRoot, String[] instructionSets) argument
9440 FileInstallArgs(String codePath, String resourcePath, String legacyNativeLibraryPath, String[] instructionSets) argument
10094 deriveCodePathName(String codePath) 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.java108 // TODO: refactor "codePath" to "apkPath"
257 public final String codePath; field in class:PackageParser.PackageLite
272 public PackageLite(String codePath, ApkLite baseApk, String[] splitNames, argument
279 this.codePath = codePath;
280 this.baseCodePath = baseApk.codePath;
302 public final String codePath; field in class:PackageParser.ApkLite
313 public ApkLite(String codePath, String packageName, String splitName, int versionCode, argument
316 this.codePath = codePath;
1261 parseApkLite(String codePath, Resources res, XmlPullParser parser, AttributeSet attrs, int flags, Signature[] signatures) argument
4200 public String codePath; field in class:PackageParser.Package
[all...]

Completed in 255 milliseconds