Searched refs:installLocation (Results 1 - 16 of 16) sorted by relevance

/frameworks/base/core/java/android/content/pm/
H A DPackageInfoLite.java64 public int installLocation; field in class:PackageInfoLite
88 dest.writeInt(installLocation);
117 installLocation = source.readInt();
H A DPackageInfo.java223 * the {@link android.R.attr#installLocation} attribute.
230 * {@link android.R.attr#installLocation} attribute.
236 * {@link android.R.attr#installLocation} attribute.
242 * {@link android.R.attr#installLocation} attribute.
248 * {@link android.R.attr#installLocation} attribute, one of
252 public int installLocation = INSTALL_LOCATION_INTERNAL_ONLY; field in class:PackageInfo
326 dest.writeInt(installLocation);
377 installLocation = source.readInt();
H A DPackageInstaller.java951 public int installLocation = PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY; field in class:PackageInstaller.SessionParams
992 installLocation = source.readInt();
1007 * Provide value of {@link PackageInfo#installLocation}, which may be used
1011 public void setInstallLocation(int installLocation) { argument
1012 this.installLocation = installLocation;
1173 pw.printPair("installLocation", installLocation);
1196 dest.writeInt(installLocation);
H A DApplicationInfo.java866 public int installLocation = PackageInfo.INSTALL_LOCATION_UNSPECIFIED; field in class:ApplicationInfo
1172 installLocation = orig.installLocation;
1240 dest.writeInt(installLocation);
1305 installLocation = source.readInt();
H A DPackageParser.java380 public final int installLocation; field in class:PackageParser.PackageLite
422 this.installLocation = baseApk.installLocation;
463 public final int installLocation; field in class:PackageParser.ApkLite
476 int installLocation, List<VerifierInfo> verifiers, Signature[] signatures,
488 this.installLocation = installLocation;
641 pi.installLocation = p.installLocation;
1779 int installLocation
474 ApkLite(String codePath, String packageName, String splitName, boolean isFeatureSplit, String configForSplit, String usesSplitName, int versionCode, int revisionCode, int installLocation, List<VerifierInfo> verifiers, Signature[] signatures, Certificate[][] certificates, boolean coreApp, boolean debuggable, boolean multiArch, boolean use32bitAbi, boolean extractNativeLibs, boolean isolatedSplits) argument
5786 public int installLocation; field in class:PackageParser.Package
[all...]
/frameworks/base/core/java/com/android/internal/content/
H A DPackageHelper.java410 int installLocation, long sizeBytes, TestableInterface testInterface)
414 params.installLocation = installLocation;
420 * Given a requested {@link PackageInfo#installLocation} and calculated
431 return resolveInstallVolume(context, params.appPackageName, params.installLocation,
483 && params.installLocation == PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY) {
541 int installLocation, long sizeBytes, int installFlags) {
544 params.installLocation = installLocation;
555 * Given a requested {@link PackageInfo#installLocation} an
409 resolveInstallVolume(Context context, String packageName, int installLocation, long sizeBytes, TestableInterface testInterface) argument
540 resolveInstallLocation(Context context, String packageName, int installLocation, long sizeBytes, int installFlags) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/app/
H A DApplicationPackageManagerTest.java193 appInfo.installLocation = location;
219 appInfo.installLocation = location;
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
H A DDefaultContainerService.java187 pkg.packageName, pkg.installLocation, sizeBytes, flags);
197 ret.installLocation = pkg.installLocation;
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DPackageParserTest.java196 assertEquals(a.installLocation, b.installLocation);
395 assertEquals(a.installLocation, that.installLocation);
429 pkg.installLocation = 100;
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DPackageManagerTests.java853 assertInstall(ip.pkg, flags, ip.pkg.installLocation);
1421 assertInstall(ip.pkg, rFlags, ip.pkg.installLocation);
1448 assertInstall(ip.pkg, iFlags, ip.pkg.installLocation);
1476 assertInstall(rp.pkg, replaceFlags, rp.pkg.installLocation);
1503 assertInstall(rp.pkg, replaceFlags, ip.pkg.installLocation);
2600 assertInstall(ip.pkg, iFlags, ip.pkg.installLocation);
2610 assertInstall(ip2.pkg, i2Flags, ip2.pkg.installLocation);
2630 assertInstall(ip.pkg, iFlags, ip.pkg.installLocation);
2660 assertInstall(ip2.pkg, i2Flags, ip2.pkg.installLocation);
2669 assertInstall(ip.pkg, iFlags, ip.pkg.installLocation);
[all...]
/frameworks/base/tools/aapt/
H A DCommand.cpp1272 int32_t installLocation = AaptXml::getResolvedIntegerAttribute(res, tree, local
1276 "ERROR getting 'android:installLocation' attribute: %s",
1281 if (installLocation >= 0) {
1283 switch (installLocation) {
1294 fprintf(stderr, "Invalid installLocation %d\n", installLocation);
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageInstallerService.java141 private static final String ATTR_INSTALL_LOCATION = "installLocation";
424 params.installLocation = readIntAttribute(in, ATTR_INSTALL_LOCATION);
500 writeIntAttribute(out, ATTR_INSTALL_LOCATION, params.installLocation);
H A DPackageManagerShellCommand.java1213 sessionParams.installLocation = Integer.parseInt(getNextArg());
H A DPackageManagerService.java15598 int installLocation = pkgLite.installLocation;
15663 if (installLocation == PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY) {
15666 } else if (installLocation == PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL) {
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationPackageManager.java1975 && (app.installLocation == PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY
1976 || app.installLocation == PackageInfo.INSTALL_LOCATION_UNSPECIFIED)) {
/frameworks/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java580 sessionParams.installLocation = Integer.parseInt(nextOptionData());

Completed in 9278 milliseconds