Home | History | Annotate | Download | only in pm

Lines Matching defs:apkFile

873     public Package parseMonolithicPackage(File apkFile, int flags) throws PackageParserException {
874 final PackageLite lite = parseMonolithicPackageLite(apkFile, flags);
878 "Not a coreApp: " + apkFile);
884 final Package pkg = parseBaseApk(apkFile, assets, flags);
885 pkg.setCodePath(apkFile.getAbsolutePath());
911 private Package parseBaseApk(File apkFile, AssetManager assets, int flags)
913 final String apkPath = apkFile.getAbsolutePath();
922 mArchiveSourcePath = apkFile.getAbsolutePath();
1154 private static void collectCertificates(Package pkg, File apkFile, int parseFlags)
1156 final String apkPath = apkFile.getAbsolutePath();
1303 * @param apkFile path to a single APK
1307 public static ApkLite parseApkLite(File apkFile, int flags)
1309 final String apkPath = apkFile.getAbsolutePath();
1337 collectCertificates(tempPkg, apkFile, 0 /*parseFlags*/);