Home | History | Annotate | Download | only in pm

Lines Matching refs:lite

668                 final ApkLite lite = parseApkLite(file, flags);
673 packageName = lite.packageName;
674 versionCode = lite.versionCode;
676 if (!packageName.equals(lite.packageName)) {
678 "Inconsistent package " + lite.packageName + " in " + file
681 if (versionCode != lite.versionCode) {
683 "Inconsistent version " + lite.versionCode + " in " + file
689 if (apks.put(lite.splitName, lite) != null) {
691 "Split name " + lite.splitName
756 final PackageLite lite = parseClusterPackageLite(packageDir, 0);
758 if (mOnlyCoreApps && !lite.coreApp) {
767 loadApkIntoAssetManager(assets, lite.baseCodePath, flags);
769 if (!ArrayUtils.isEmpty(lite.splitCodePaths)) {
770 for (String path : lite.splitCodePaths) {
775 final File baseApk = new File(lite.baseCodePath);
782 if (!ArrayUtils.isEmpty(lite.splitNames)) {
783 final int num = lite.splitNames.length;
784 pkg.splitNames = lite.splitNames;
785 pkg.splitCodePaths = lite.splitCodePaths;
813 final PackageLite lite = parseMonolithicPackageLite(apkFile, flags);
814 if (!lite.coreApp) {