Home | History | Annotate | Download | only in pm

Lines Matching refs:baseApk

425         public PackageLite(String codePath, ApkLite baseApk, String[] splitNames,
428 this.packageName = baseApk.packageName;
429 this.versionCode = baseApk.versionCode;
430 this.versionCodeMajor = baseApk.versionCodeMajor;
431 this.installLocation = baseApk.installLocation;
432 this.verifiers = baseApk.verifiers;
438 this.baseCodePath = baseApk.codePath;
440 this.baseRevisionCode = baseApk.revisionCode;
442 this.coreApp = baseApk.coreApp;
443 this.debuggable = baseApk.debuggable;
444 this.multiArch = baseApk.multiArch;
445 this.use32bitAbi = baseApk.use32bitAbi;
446 this.extractNativeLibs = baseApk.extractNativeLibs;
447 this.isolatedSplits = baseApk.isolatedSplits;
891 final ApkLite baseApk = parseApkLite(packageFile, flags);
894 return new PackageLite(packagePath, baseApk, null, null, null, null, null, null);
942 final ApkLite baseApk = apks.remove(null);
943 if (baseApk == null) {
980 return new PackageLite(codePath, baseApk, splitNames, isFeatureSplits, usesSplitNames,
1234 final File baseApk = new File(lite.baseCodePath);
1235 final Package pkg = parseBaseApk(baseApk, assets, flags);
1238 "Failed to parse base APK: " + baseApk);