Home
last modified time | relevance | path

Searched refs:OTA_PACKAGE_DIR (Results 1 – 2 of 2) sorted by relevance

/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/services/
DPrepareUpdateService.java20 import static com.example.android.systemupdatersample.util.PackageFiles.OTA_PACKAGE_DIR;
160 downloadPreStreamingFiles(config, OTA_PACKAGE_DIR); in execute()
171 || !Paths.get(OTA_PACKAGE_DIR, PAYLOAD_PROPERTIES_FILE_NAME).toFile().exists()) { in execute()
175 File compatibilityFile = Paths.get(OTA_PACKAGE_DIR, COMPATIBILITY_ZIP_FILE_NAME).toFile(); in execute()
187 Paths.get(OTA_PACKAGE_DIR, PAYLOAD_PROPERTIES_FILE_NAME).toFile()); in execute()
209 Path metadataPath = Paths.get(OTA_PACKAGE_DIR, PackageFiles.PAYLOAD_METADATA_FILE_NAME); in verifyPayloadMetadata()
243 Files.deleteIfExists(Paths.get(OTA_PACKAGE_DIR, file)); in downloadPreStreamingFiles()
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/util/
DPackageFiles.java25 public static final String OTA_PACKAGE_DIR = "/data/ota_package"; field in PackageFiles