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
326 dest.writeInt(installLocation);
377 installLocation = source.readInt();
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 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 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/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);

Completed in 6821 milliseconds