/frameworks/base/services/core/java/com/android/server/pm/ |
D | PackageSettingBase.java | 64 File resourcePath; field in PackageSettingBase 136 PackageSettingBase(String name, String realName, File codePath, File resourcePath, in PackageSettingBase() argument 150 init(codePath, resourcePath, legacyNativeLibraryPathString, primaryCpuAbiString, in PackageSettingBase() 168 void init(File codePath, File resourcePath, String legacyNativeLibraryPathString, in init() argument 173 this.resourcePath = resourcePath; in init() 174 this.resourcePathString = resourcePath.toString(); in init() 250 resourcePath = orig.resourcePath; in doCopy() 651 this.resourcePath = other.resourcePath; in updateFrom()
|
D | PackageSetting.java | 50 PackageSetting(String name, String realName, File codePath, File resourcePath, in PackageSetting() argument 56 super(name, realName, codePath, resourcePath, legacyNativeLibraryPathString, in PackageSetting()
|
D | Settings.java | 497 PackageSetting ret = addPackageLPw(name, p.realName, p.codePath, p.resourcePath, in enableSystemPackageLPw() 515 PackageSetting addPackageLPw(String name, String realName, File codePath, File resourcePath, in addPackageLPw() argument 530 p = new PackageSetting(name, realName, codePath, resourcePath, in addPackageLPw() 596 File codePath, File resourcePath, String legacyNativeLibraryPath, String primaryCpuAbi, in createNewSetting() argument 615 pkgSetting.resourcePath = resourcePath; in createNewSetting() 626 pkgSetting = new PackageSetting(pkgName, realPkgName, codePath, resourcePath, in createNewSetting() 713 @NonNull File codePath, File resourcePath, in updatePackageSetting() argument 758 if (!pkgSetting.resourcePath.equals(resourcePath)) { in updatePackageSetting() 764 + " to " + resourcePath.toString() in updatePackageSetting() 766 pkgSetting.resourcePath = resourcePath; in updatePackageSetting() [all …]
|
D | PackageManagerService.java | 15563 String resourcePath, String[] instructionSets) { 15564 return new FileInstallArgs(codePath, resourcePath, instructionSets); 15709 FileInstallArgs(String codePath, String resourcePath, String[] instructionSets) { 15714 this.resourceFile = (resourcePath != null) ? new File(resourcePath) : null;
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
D | PackageManagerSettingsTests.java | 572 assertThat(testPkgSetting01.resourcePath, is(UPDATED_CODE_PATH)); in testCreateNewSetting01() 614 assertThat(testPkgSetting01.resourcePath, is(INITIAL_CODE_PATH)); in testCreateNewSetting02() 662 assertThat(testPkgSetting01.resourcePath, is(INITIAL_CODE_PATH)); in testCreateNewSetting03() 706 assertThat(testPkgSetting01.resourcePath, is(UPDATED_CODE_PATH)); in testCreateNewSetting04() 791 assertSame(origPkgSetting.resourcePath, testPkgSetting.resourcePath); in verifySettingCopy() 792 assertThat(origPkgSetting.resourcePath, is(testPkgSetting.resourcePath)); in verifySettingCopy()
|
/frameworks/base/tests/DynamicCodeLoggerIntegrationTests/src/com/android/server/pm/dex/ |
D | DynamicCodeLoggerIntegrationTests.java | 376 private static String copyAndHashResource(String resourcePath, File copyTo) throws Exception { in copyAndHashResource() argument 381 try (InputStream input = thisClass.getResourceAsStream(resourcePath); in copyAndHashResource()
|
/frameworks/base/core/java/android/content/pm/ |
D | ApplicationInfo.java | 2122 …/** {@hide} */ public void setResourcePath(String resourcePath) { scanPublicSourceDir = resourcePa… in setResourcePath() argument
|
D | PackageParser.java | 6652 public void setApplicationInfoResourcePath(String resourcePath) { in setApplicationInfoResourcePath() argument 6653 this.applicationInfo.setResourcePath(resourcePath); in setApplicationInfoResourcePath() 6657 childPackages.get(i).applicationInfo.setResourcePath(resourcePath); in setApplicationInfoResourcePath() 6664 public void setApplicationInfoBaseResourcePath(String resourcePath) { in setApplicationInfoBaseResourcePath() argument 6665 this.applicationInfo.setBaseResourcePath(resourcePath); in setApplicationInfoBaseResourcePath() 6669 childPackages.get(i).applicationInfo.setBaseResourcePath(resourcePath); in setApplicationInfoBaseResourcePath()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/Tests/ |
D | GPBTestUtilities.m | 80 path = [[bundle resourcePath] stringByAppendingPathComponent:name];
|