Searched refs:installLocation (Results 1 - 11 of 11) 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.java222 * the {@link android.R.attr#installLocation} attribute.
229 * {@link android.R.attr#installLocation} attribute.
235 * {@link android.R.attr#installLocation} attribute.
241 * {@link android.R.attr#installLocation} attribute.
247 * {@link android.R.attr#installLocation} attribute, one of
251 public int installLocation = INSTALL_LOCATION_INTERNAL_ONLY; field in class:PackageInfo
319 dest.writeInt(installLocation);
368 installLocation = source.readInt();
H A DApplicationInfo.java588 public int installLocation = PackageInfo.INSTALL_LOCATION_UNSPECIFIED; field in class:ApplicationInfo
707 installLocation = orig.installLocation;
757 dest.writeInt(installLocation);
806 installLocation = source.readInt();
H A DPackageInstaller.java873 public int installLocation = PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY; field in class:PackageInstaller.SessionParams
906 installLocation = source.readInt();
917 * Provide value of {@link PackageInfo#installLocation}, which may be used
921 public void setInstallLocation(int installLocation) { argument
922 this.installLocation = installLocation;
1003 pw.printPair("installLocation", installLocation);
1023 dest.writeInt(installLocation);
H A DPackageParser.java246 public final int installLocation; field in class:PackageParser.PackageLite
276 this.installLocation = baseApk.installLocation;
307 public final int installLocation; field in class:PackageParser.ApkLite
314 int revisionCode, int installLocation, List<VerifierInfo> verifiers,
321 this.installLocation = installLocation;
427 pi.installLocation = p.installLocation;
1266 int installLocation
313 ApkLite(String codePath, String packageName, String splitName, int versionCode, int revisionCode, int installLocation, List<VerifierInfo> verifiers, Signature[] signatures, boolean coreApp, boolean multiArch) argument
4294 public int installLocation; field in class:PackageParser.Package
[all...]
/frameworks/base/core/java/com/android/internal/content/
H A DPackageHelper.java337 * Given a requested {@link PackageInfo#installLocation} and calculated
341 int installLocation, long sizeBytes, int installFlags) {
357 } else if (installLocation == PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY) {
360 } else if (installLocation == PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL) {
363 } else if (installLocation == PackageInfo.INSTALL_LOCATION_AUTO) {
340 resolveInstallLocation(Context context, String packageName, int installLocation, long sizeBytes, int installFlags) argument
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
H A DDefaultContainerService.java187 ret.installLocation = pkg.installLocation;
190 pkg.packageName, pkg.installLocation, sizeBytes, flags);
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DPackageManagerTests.java867 assertInstall(ip.pkg, flags, ip.pkg.installLocation);
1457 assertInstall(ip.pkg, rFlags, ip.pkg.installLocation);
1484 assertInstall(ip.pkg, iFlags, ip.pkg.installLocation);
1512 assertInstall(rp.pkg, replaceFlags, rp.pkg.installLocation);
1539 assertInstall(rp.pkg, replaceFlags, ip.pkg.installLocation);
2717 assertInstall(ip.pkg, iFlags, ip.pkg.installLocation);
2727 assertInstall(ip2.pkg, i2Flags, ip2.pkg.installLocation);
2747 assertInstall(ip.pkg, iFlags, ip.pkg.installLocation);
2777 assertInstall(ip2.pkg, i2Flags, ip2.pkg.installLocation);
2786 assertInstall(ip.pkg, iFlags, ip.pkg.installLocation);
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageInstallerService.java126 private static final String ATTR_INSTALL_LOCATION = "installLocation";
373 params.installLocation = readIntAttribute(in, ATTR_INSTALL_LOCATION);
444 writeIntAttribute(out, ATTR_INSTALL_LOCATION, params.installLocation);
538 params.appPackageName, params.installLocation, params.sizeBytes,
H A DPackageManagerService.java8914 int installLocation = pkgLite.installLocation;
8943 if (installLocation == PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY) {
8946 } else if (installLocation == PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL) {
/frameworks/base/tools/aapt/
H A DCommand.cpp1049 int32_t installLocation = AaptXml::getResolvedIntegerAttribute(res, tree, local
1052 fprintf(stderr, "ERROR getting 'android:installLocation' attribute: %s\n",
1057 if (installLocation >= 0) {
1059 switch (installLocation) {
1070 fprintf(stderr, "Invalid installLocation %d\n", installLocation);

Completed in 6124 milliseconds