Searched refs:apexFile (Results 1 – 6 of 6) sorted by relevance
/aosp14/frameworks/base/tests/StagedInstallTest/src/com/android/tests/stagedinstallinternal/host/ |
H A 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()
|
/aosp14/frameworks/base/services/core/java/com/android/server/pm/ |
H A D | ApexManager.java | 123 public final File apexFile; field in ApexManager.ActiveApexInfo 126 private ActiveApexInfo(File apexDirectory, File preInstalledApexPath, File apexFile) { in ActiveApexInfo() argument 127 this(null, apexDirectory, preInstalledApexPath, true, apexFile, false); in ActiveApexInfo() 131 File preInstalledApexPath, boolean isFactory, File apexFile, in ActiveApexInfo() argument 137 this.apexFile = apexFile; in ActiveApexInfo() 368 abstract ApexInfo installPackage(File apexFile) throws PackageManagerException; in installPackage() argument 913 ApexInfo installPackage(File apexFile) in installPackage() argument 916 return waitForApexService().installAndActivatePackage(apexFile.getAbsolutePath()); in installPackage() 949 return apexes.get(i).apexFile; in getBackingApexFile() 1173 ApexInfo installPackage(File apexFile) { in installPackage() argument
|
H A D | PackageSessionVerifier.java | 400 File apexFile = new File(apexInfo.modulePath); in submitSessionToApexService() local 401 parsedPackage = packageParser.parsePackage(apexFile, 0, false); in submitSessionToApexService()
|
H A D | InstallPackageHelper.java | 3646 File apexFile = new File(ai.modulePath); in scanApexPackages() local 3647 parallelPackageParser.submit(apexFile, parseFlags); in scanApexPackages() 3648 parsingApexInfo.put(apexFile, ai); in scanApexPackages()
|
/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/pm/ |
H A D | ApexManagerTest.java | 498 File apexFile = extractResource(TEST_APEX_PKG, TEST_APEX_FILE_NAME); in createApexInfoForTestPkg() local 503 apexInfo.modulePath = apexFile.getPath(); in createApexInfoForTestPkg() 505 apexInfo.preinstalledModulePath = apexFile.getPath(); in createApexInfoForTestPkg() 514 boolean isFactory, File apexFile) { in createApexInfo() argument 520 apexInfo.modulePath = apexFile.getPath(); in createApexInfo() 521 apexInfo.preinstalledModulePath = apexFile.getPath(); in createApexInfo()
|
/aosp14/frameworks/base/core/java/android/content/pm/ |
H A 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()
|