/frameworks/base/core/java/com/android/internal/content/ |
D | PackageHelper.java | 144 int installLocation, long sizeBytes, TestableInterface testInterface) in resolveInstallVolume() argument 148 params.installLocation = installLocation; in resolveInstallVolume() 165 return resolveInstallVolume(context, params.appPackageName, params.installLocation, in resolveInstallVolume() 220 && params.installLocation == PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY) { in resolveInstallVolume() 278 int installLocation, long sizeBytes, int installFlags) { in resolveInstallLocation() argument 281 params.installLocation = installLocation; in resolveInstallLocation() 314 } else if (params.installLocation == PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY) { in resolveInstallLocation() 317 } else if (params.installLocation == PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL) { in resolveInstallLocation() 320 } else if (params.installLocation == PackageInfo.INSTALL_LOCATION_AUTO) { in resolveInstallLocation()
|
/frameworks/base/core/java/android/content/pm/ |
D | PackageInfoLite.java | 84 public int installLocation; field in PackageInfoLite 109 dest.writeInt(installLocation); in writeToParcel() 140 installLocation = source.readInt(); in PackageInfoLite()
|
D | PackageInstaller.java | 1271 public int installLocation = PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY; field in PackageInstaller.SessionParams 1327 installLocation = source.readInt(); in SessionParams() 1350 ret.installLocation = installLocation; in copy() 1396 public void setInstallLocation(int installLocation) { in setInstallLocation() argument 1397 this.installLocation = installLocation; in setInstallLocation() 1699 pw.printPair("installLocation", installLocation); in dump() 1727 dest.writeInt(installLocation); in writeToParcel() 1843 public int installLocation; field in PackageInstaller.SessionInfo 1902 installLocation = source.readInt(); in SessionInfo() 2067 return installLocation; in getInstallLocation() [all …]
|
D | PackageInfo.java | 329 public int installLocation = INSTALL_LOCATION_INTERNAL_ONLY; field in PackageInfo 471 dest.writeInt(installLocation); in writeToParcel() 535 installLocation = source.readInt(); in PackageInfo()
|
D | ApplicationInfo.java | 1083 public int installLocation = PackageInfo.INSTALL_LOCATION_UNSPECIFIED; field in ApplicationInfo 1584 installLocation = orig.installLocation; in ApplicationInfo() 1663 dest.writeInt(installLocation); in writeToParcel() 1739 installLocation = source.readInt(); in ApplicationInfo()
|
D | PackageParser.java | 378 public final int installLocation; field in PackageParser.PackageLite 421 this.installLocation = baseApk.installLocation; in PackageLite() 463 public final int installLocation; field in PackageParser.ApkLite 481 int revisionCode, int installLocation, List<VerifierInfo> verifiers, in ApkLite() argument 495 this.installLocation = installLocation; in ApkLite() 704 pi.installLocation = p.installLocation; in generatePackageInfo() 1759 int installLocation = PARSE_DEFAULT_INSTALL_LOCATION; in parseApkLite() local 1780 installLocation = attrs.getAttributeIntValue(i, in parseApkLite() 1868 revisionCode, installLocation, verifiers, signingDetails, coreApp, debuggable, in parseApkLite() 2067 pkg.installLocation = sa.getInteger( in parseBaseApkCommon() [all …]
|
/frameworks/base/core/tests/coretests/src/android/app/ |
D | ApplicationPackageManagerTest.java | 196 appInfo.installLocation = location; in testGetCandidateVolumes_3rdParty_internalOnly() 222 appInfo.installLocation = location; in testGetCandidateVolumes_3rdParty_auto()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
D | PackageParserTest.java | 210 assertEquals(a.installLocation, b.installLocation); in assertPackagesEqual() 413 assertEquals(a.installLocation, that.installLocation); in assertApplicationInfoEqual() 447 pkg.installLocation = 100; in setKnownFields()
|
D | PackageInstallerSessionTest.java | 259 assertEquals(expected.installLocation, actual.installLocation); in assertSessionParamsEquivalent()
|
/frameworks/base/core/tests/coretests/src/android/content/pm/ |
D | PackageManagerTests.java | 830 assertInstall(ip.pkg, flags, ip.pkg.installLocation); in sampleReplaceFromRawResource() 1082 assertInstall(rp.pkg, replaceFlags, rp.pkg.installLocation); in testManifestInstallLocationReplaceInternalSdcard() 1109 assertInstall(rp.pkg, replaceFlags, ip.pkg.installLocation); in testManifestInstallLocationReplaceSdcardInternal() 1718 assertInstall(ip.pkg, iFlags, ip.pkg.installLocation); in testInstallDeclaresPermissions() 1728 assertInstall(ip2.pkg, i2Flags, ip2.pkg.installLocation); in testInstallDeclaresPermissions() 1748 assertInstall(ip.pkg, iFlags, ip.pkg.installLocation); in testInstallDeclaresPermissions() 1778 assertInstall(ip2.pkg, i2Flags, ip2.pkg.installLocation); in testInstallDeclaresPermissions() 1787 assertInstall(ip.pkg, iFlags, ip.pkg.installLocation); in testInstallDeclaresPermissions() 1796 assertInstall(ip2.pkg, i2Flags, ip2.pkg.installLocation); in testInstallDeclaresPermissions()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | PackageManagerServiceUtils.java | 765 pkg.packageName, pkg.installLocation, sizeBytes, flags); in getMinimalPackageInfo() 773 ret.installLocation = pkg.installLocation; in getMinimalPackageInfo()
|
D | PackageInstallerSession.java | 481 info.installLocation = params.installLocation; in generateInfo() 2419 writeIntAttribute(out, ATTR_INSTALL_LOCATION, params.installLocation); in write() 2515 params.installLocation = readIntAttribute(in, ATTR_INSTALL_LOCATION); in readFromXml()
|
D | PackageManagerShellCommand.java | 2630 sessionParams.installLocation = Integer.parseInt(getNextArg()); in makeInstallParams()
|
D | PackageManagerService.java | 14650 int installLocation = pkgLite.installLocation; 14704 if (installLocation == PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY) { 14707 … } else if (installLocation == PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL) {
|
/frameworks/base/packages/PackageInstaller/src/com/android/packageinstaller/ |
D | InstallInstalling.java | 147 params.setInstallLocation(pkg.installLocation); in onCreate()
|
/frameworks/base/tools/aapt2/dump/ |
D | DumpManifest.cpp | 430 const int32_t* installLocation = nullptr; member in aapt::Manifest 448 installLocation = GetAttributeInteger(FindAttribute(manifest, INSTALL_LOCATION_ATTR)); in Extract() 475 if (installLocation) { in Print() 476 switch (*installLocation) { in Print()
|
/frameworks/base/tools/aapt/ |
D | Command.cpp | 1285 int32_t installLocation = AaptXml::getResolvedIntegerAttribute(res, tree, in doDump() local 1294 if (installLocation >= 0) { in doDump() 1296 switch (installLocation) { in doDump() 1307 fprintf(stderr, "Invalid installLocation %d\n", installLocation); in doDump()
|
/frameworks/base/core/java/android/app/ |
D | ApplicationPackageManager.java | 2179 && (app.installLocation == PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY in isPackageCandidateVolume() 2180 || app.installLocation == PackageInfo.INSTALL_LOCATION_UNSPECIFIED)) { in isPackageCandidateVolume()
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 15168 Landroid/content/pm/PackageInfoLite;->installLocation:I 15198 Landroid/content/pm/PackageInstaller$SessionInfo;->installLocation:I 15211 Landroid/content/pm/PackageInstaller$SessionParams;->installLocation:I 15500 Landroid/content/pm/PackageParser$ApkLite;->installLocation:I 90397 Lcom/android/internal/R$attr;->installLocation:I
|
/frameworks/opt/setupwizard/tools/docs/ |
D | android-22.txt | 706 field public static final int installLocation = 16843447; // 0x10102b7 8555 field public int installLocation;
|
/frameworks/base/non-updatable-api/ |
D | current.txt | 779 field public static final int installLocation = 16843447; // 0x10102b7 11382 field public int installLocation;
|
/frameworks/base/api/ |
D | current.txt | 779 field public static final int installLocation = 16843447; // 0x10102b7 11382 field public int installLocation;
|