Searched refs:apexFile (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/tests/StagedInstallTest/src/com/android/tests/stagedinstallinternal/host/ |
D | StagedInstallInternalTest.java | 263 final File apexFile = mHostUtils.getTestFile(SHIM_V2); in testAdbStagdReadyTimeoutFlagWorks() local 265 "--staged-ready-timeout", "60000", apexFile.getAbsolutePath()); in testAdbStagdReadyTimeoutFlagWorks() 278 final File apexFile = mHostUtils.getTestFile(SHIM_V2); in testAdbStagedInstallWaitsTillReadyByDefault() local 280 apexFile.getAbsolutePath()); in testAdbStagedInstallWaitsTillReadyByDefault() 293 final File apexFile = mHostUtils.getTestFile(SHIM_V2); in testAdbStagedReadyWaitCanBeSkipped() local 295 "--staged-ready-timeout", "0", apexFile.getAbsolutePath()); in testAdbStagedReadyWaitCanBeSkipped() 310 final File apexFile = mHostUtils.getTestFile(SHIM_V2); in testAdbRollbackAppWaitsForStagedReady() local 312 "--enable-rollback", apexFile.getAbsolutePath()); in testAdbRollbackAppWaitsForStagedReady() 327 final File apexFile = mHostUtils.getTestFile(SHIM_V2); in testAdbInstallMultiPackageCommandWorks() local 330 apexFile.getAbsolutePath(), apkFile.getAbsolutePath()); in testAdbInstallMultiPackageCommandWorks()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | ApexManager.java | 116 public final File apexFile; field in ApexManager.ActiveApexInfo 119 private ActiveApexInfo(File apexDirectory, File preInstalledApexPath, File apexFile) { in ActiveApexInfo() argument 120 this(null, apexDirectory, preInstalledApexPath, true, apexFile, false); in ActiveApexInfo() 124 File preInstalledApexPath, boolean isFactory, File apexFile, in ActiveApexInfo() argument 130 this.apexFile = apexFile; in ActiveApexInfo() 366 abstract ApexInfo installPackage(File apexFile, boolean force) throws PackageManagerException; in installPackage() argument 912 ApexInfo installPackage(File apexFile, boolean force) in installPackage() argument 915 return waitForApexService().installAndActivatePackage(apexFile.getAbsolutePath(), in installPackage() 949 return apexes.get(i).apexFile; in getBackingApexFile()
|
D | PackageSessionVerifier.java | 403 File apexFile = new File(apexInfo.modulePath); in submitSessionToApexService() local 404 parsedPackage = packageParser.parsePackage(apexFile, PARSE_APEX, false); in submitSessionToApexService()
|
D | InstallPackageHelper.java | 3526 File apexFile = new File(ai.modulePath); in scanApexPackages() local 3527 parallelPackageParser.submit(apexFile, parseFlags); in scanApexPackages() 3528 parsingApexInfo.put(apexFile, ai); in scanApexPackages()
|
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/pm/ |
D | ApexManagerTest.java | 513 File apexFile = extractResource(TEST_APEX_PKG, TEST_APEX_FILE_NAME); in createApexInfoForTestPkg() local 518 apexInfo.modulePath = apexFile.getPath(); in createApexInfoForTestPkg() 520 apexInfo.preinstalledModulePath = apexFile.getPath(); in createApexInfoForTestPkg() 529 boolean isFactory, File apexFile) { in createApexInfo() argument 535 apexInfo.modulePath = apexFile.getPath(); in createApexInfo() 536 apexInfo.preinstalledModulePath = apexFile.getPath(); in createApexInfo()
|
/frameworks/base/core/java/android/content/pm/ |
D | PackageParser.java | 869 File apexFile = new File(apexInfo.modulePath); in generatePackageInfo() local 871 pi.applicationInfo.sourceDir = apexFile.getPath(); in generatePackageInfo() 872 pi.applicationInfo.publicSourceDir = apexFile.getPath(); in generatePackageInfo()
|