Searched defs:installLocation (Results 1 - 7 of 7) 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/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 1934 milliseconds