Home
last modified time | relevance | path

Searched refs:codePathString (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/pm/
DPackageSettingBase.java74 String codePathString; field in PackageSettingBase
186 this.codePathString = codePath.toString(); in init()
248 codePathString = orig.codePathString; in doCopy()
DSettings.java831 + pkgSetting.codePathString + " to " + codePath.toString()); in updatePackageSetting()
948 if (!Objects.equals(codePath, p.codePathString)) { in insertPackageSettingLPw()
950 " changing from " + p.codePathString + " to " + codePath); in insertPackageSettingLPw()
952 p.codePathString = codePath; in insertPackageSettingLPw()
2810 serializer.attribute(null, "codePath", pkg.codePathString); in writeDisabledSysPackageLPr()
2815 if (!pkg.resourcePathString.equals(pkg.codePathString)) { in writeDisabledSysPackageLPr()
2861 serializer.attribute(null, "codePath", pkg.codePathString); in writePackageLPr()
2862 if (!pkg.resourcePathString.equals(pkg.codePathString)) { in writePackageLPr()
4633 pw.print(prefix); pw.print(" codePath="); pw.println(ps.codePathString); in dumpPackageLPr()
4651 if (pps == null || !pps.codePathString.equals(parentPkg.codePath)) { in dumpPackageLPr()
[all …]
DPackageManagerService.java2654 + ps.codePathString + ", installStatus=" + ps.installStatus in PackageManagerService()
8967 + ps.name + " changing from " + updatedPkg.codePathString in scanPackageInternalLI()
8970 updatedPkg.codePathString = scanFile.toString(); in scanPackageInternalLI()
9007 + " reverting from " + ps.codePathString in scanPackageInternalLI()
9012 ps.codePathString, ps.resourcePathString, getAppDexInstructionSets(ps)); in scanPackageInternalLI()
9078 + " reverting from " + ps.codePathString + ": new version " in scanPackageInternalLI()
9081 ps.codePathString, ps.resourcePathString, getAppDexInstructionSets(ps)); in scanPackageInternalLI()
10881 + " and requiring known paths " + known.codePathString in assertPackageIsValid()
10884 if (!pkg.applicationInfo.getCodePath().equals(known.codePathString) in assertPackageIsValid()
10890 + " but expected at " + known.codePathString in assertPackageIsValid()
[all …]
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
DPackageManagerSettingsTests.java539 pkg.applicationInfo.setCodePath(ps.codePathString); in testInsertPackageSetting()
597 assertSame(origPkgSetting.codePathString, testPkgSetting.codePathString); in verifySettingCopy()
598 assertThat(origPkgSetting.codePathString, is(testPkgSetting.codePathString)); in verifySettingCopy()