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.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
320 dest.writeInt(installLocation);
369 installLocation = source.readInt();
H A DApplicationInfo.java765 public int installLocation = PackageInfo.INSTALL_LOCATION_UNSPECIFIED; field in class:ApplicationInfo
928 installLocation = orig.installLocation;
984 dest.writeInt(installLocation);
1040 installLocation = source.readInt();
H A DPackageInstaller.java882 public int installLocation = PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY; field in class:PackageInstaller.SessionParams
921 installLocation = source.readInt();
935 * Provide value of {@link PackageInfo#installLocation}, which may be used
939 public void setInstallLocation(int installLocation) { argument
940 this.installLocation = installLocation;
1073 pw.printPair("installLocation", installLocation);
1096 dest.writeInt(installLocation);
H A DPackageParser.java316 public final int installLocation; field in class:PackageParser.PackageLite
348 this.installLocation = baseApk.installLocation;
381 public final int installLocation; field in class:PackageParser.ApkLite
391 int revisionCode, int installLocation, List<VerifierInfo> verifiers,
399 this.installLocation = installLocation;
497 pi.installLocation = p.installLocation;
1434 int installLocation
390 ApkLite(String codePath, String packageName, String splitName, int versionCode, int revisionCode, int installLocation, List<VerifierInfo> verifiers, Signature[] signatures, Certificate[][] certificates, boolean coreApp, boolean multiArch, boolean use32bitAbi, boolean extractNativeLibs) argument
4822 public int installLocation; field in class:PackageParser.Package
[all...]
/frameworks/base/core/java/com/android/internal/content/
H A DPackageHelper.java341 * Given a requested {@link PackageInfo#installLocation} and calculated
350 int installLocation, long sizeBytes) throws IOException {
383 installLocation = PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY;
388 && installLocation == PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY) {
440 * Given a requested {@link PackageInfo#installLocation} and calculated
444 int installLocation, long sizeBytes, int installFlags) {
465 } else if (installLocation == PackageInfo.INSTALL_LOCATION_INTERNAL_ONLY) {
468 } else if (installLocation == PackageInfo.INSTALL_LOCATION_PREFER_EXTERNAL) {
471 } else if (installLocation == PackageInfo.INSTALL_LOCATION_AUTO) {
349 resolveInstallVolume(Context context, String packageName, int installLocation, long sizeBytes) argument
443 resolveInstallLocation(Context context, String packageName, int installLocation, long sizeBytes, int installFlags) argument
/frameworks/base/tools/aapt/
H A DCommand.cpp1212 int32_t installLocation = AaptXml::getResolvedIntegerAttribute(res, tree, local
1215 fprintf(stderr, "ERROR getting 'android:installLocation' attribute: %s\n",
1220 if (installLocation >= 0) {
1222 switch (installLocation) {
1233 fprintf(stderr, "Invalid installLocation %d\n", installLocation);

Completed in 2154 milliseconds