Home
last modified time | relevance | path

Searched refs:resourcePath (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/services/core/java/com/android/server/pm/
DPackageSettingBase.java65 File resourcePath; field in PackageSettingBase
135 PackageSettingBase(String name, String realName, File codePath, File resourcePath, in PackageSettingBase() argument
146 init(codePath, resourcePath, legacyNativeLibraryPathString, primaryCpuAbiString, in PackageSettingBase()
161 resourcePath = base.resourcePath; in PackageSettingBase()
197 void init(File codePath, File resourcePath, String legacyNativeLibraryPathString, in init() argument
202 this.resourcePath = resourcePath; in init()
203 this.resourcePathString = resourcePath.toString(); in init()
DPendingPackage.java25 PendingPackage(String name, String realName, File codePath, File resourcePath, in PendingPackage() argument
30 super(name, realName, codePath, resourcePath, legacyNativeLibraryPathString, in PendingPackage()
DPackageSetting.java34 PackageSetting(String name, String realName, File codePath, File resourcePath, in PackageSetting() argument
39 super(name, realName, codePath, resourcePath, legacyNativeLibraryPathString, in PackageSetting()
DSettings.java429 String realName, SharedUserSetting sharedUser, File codePath, File resourcePath, in getPackageLPw() argument
447 resourcePath, legacyNativeLibraryPathString, primaryCpuAbi, secondaryCpuAbi, in getPackageLPw()
574 PackageSetting ret = addPackageLPw(name, p.realName, p.codePath, p.resourcePath, in enableSystemPackageLPw()
591 PackageSetting addPackageLPw(String name, String realName, File codePath, File resourcePath, in addPackageLPw() argument
605 p = new PackageSetting(name, realName, codePath, resourcePath, in addPackageLPw()
686 String realName, SharedUserSetting sharedUser, File codePath, File resourcePath, in getPackageLPw() argument
756 p = new PackageSetting(origPackage.name, name, codePath, resourcePath, in getPackageLPw()
776 p = new PackageSetting(name, realName, codePath, resourcePath, in getPackageLPw()
896 final String resourcePath = pkg.applicationInfo.getResourcePath(); in insertPackageSettingLPw() local
912 if (!Objects.equals(resourcePath, p.resourcePathString)) { in insertPackageSettingLPw()
[all …]
DPackageManagerService.java6965 updatedPkg.resourcePath = scanFile;
7088 if (ps != null && !ps.codePath.equals(ps.resourcePath)) {
7094 String resourcePath = null;
7098 resourcePath = ps.resourcePathString;
7105 resourcePath = pkg.codePath;
7114 pkg.setApplicationInfoResourcePath(resourcePath);
13165 String resourcePath, String[] instructionSets) {
13185 return new FileInstallArgs(codePath, resourcePath, instructionSets);
13332 FileInstallArgs(String codePath, String resourcePath, String[] instructionSets) {
13336 this.resourceFile = (resourcePath != null) ? new File(resourcePath) : null;
[all …]
/frameworks/data-binding/compilationTests/src/test/java/android/databinding/compilationTest/
DBaseCompilationTest.java94 String resourcePath = item.getAbsolutePath().substring(len); in copyResourceDirectory() local
96 copyResourceTo(name + "/" + resourcePath, new File(target, resourcePath)); in copyResourceDirectory()
/frameworks/base/core/java/android/content/pm/
DApplicationInfo.java1214 …/** {@hide} */ public void setResourcePath(String resourcePath) { scanPublicSourceDir = resourcePa… in setResourcePath() argument
DPackageParser.java4890 public void setApplicationInfoResourcePath(String resourcePath) { in setApplicationInfoResourcePath() argument
4891 this.applicationInfo.setResourcePath(resourcePath); in setApplicationInfoResourcePath()
4895 childPackages.get(i).applicationInfo.setResourcePath(resourcePath); in setApplicationInfoResourcePath()
4900 public void setApplicationInfoBaseResourcePath(String resourcePath) { in setApplicationInfoBaseResourcePath() argument
4901 this.applicationInfo.setBaseResourcePath(resourcePath); in setApplicationInfoBaseResourcePath()
4905 childPackages.get(i).applicationInfo.setBaseResourcePath(resourcePath); in setApplicationInfoBaseResourcePath()