Home | History | Annotate | Download | only in pm

Lines Matching refs:baseApk

272         public PackageLite(String codePath, ApkLite baseApk, String[] splitNames,
274 this.packageName = baseApk.packageName;
275 this.versionCode = baseApk.versionCode;
276 this.installLocation = baseApk.installLocation;
277 this.verifiers = baseApk.verifiers;
280 this.baseCodePath = baseApk.codePath;
282 this.baseRevisionCode = baseApk.revisionCode;
284 this.coreApp = baseApk.coreApp;
285 this.multiArch = baseApk.multiArch;
659 final ApkLite baseApk = parseApkLite(packageFile, flags);
661 return new PackageLite(packagePath, baseApk, null, null, null);
707 final ApkLite baseApk = apks.remove(null);
708 if (baseApk == null) {
734 return new PackageLite(codePath, baseApk, splitNames, splitCodePaths,
789 final File baseApk = new File(lite.baseCodePath);
790 final Package pkg = parseBaseApk(baseApk, assets, flags);
793 "Failed to parse base APK: " + baseApk);