Home
last modified time | relevance | path

Searched refs:PackageFiles (Results 1 – 4 of 4) sorted by relevance

/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/services/
DPrepareUpdateService.java19 import static com.example.android.systemupdatersample.util.PackageFiles.COMPATIBILITY_ZIP_FILE_NAME;
20 import static com.example.android.systemupdatersample.util.PackageFiles.OTA_PACKAGE_DIR;
21 import static com.example.android.systemupdatersample.util.PackageFiles.PAYLOAD_BINARY_FILE_NAME;
22 import static com.example.android.systemupdatersample.util.PackageFiles.PAYLOAD_PROPERTIES_FILE_NAM…
37 import com.example.android.systemupdatersample.util.PackageFiles;
116 PackageFiles.CARE_MAP_FILE_NAME,
117 PackageFiles.COMPATIBILITY_ZIP_FILE_NAME,
118 PackageFiles.METADATA_FILE_NAME,
119 PackageFiles.PAYLOAD_PROPERTIES_FILE_NAME
202 PackageFiles.PAYLOAD_METADATA_FILE_NAME)) in verifyPayloadMetadata()
[all …]
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/util/
DPackageFiles.java20 public final class PackageFiles { class
58 private PackageFiles() {} in PackageFiles() method in PackageFiles
DPayloadSpecs.java70 if (PackageFiles.PAYLOAD_BINARY_FILE_NAME.equals(name)) { in forNonStreaming()
77 } else if (PackageFiles.PAYLOAD_PROPERTIES_FILE_NAME.equals(name)) { in forNonStreaming()
/bootable/recovery/updater_sample/tests/src/com/example/android/systemupdatersample/util/
DPayloadSpecsTest.java19 import static com.example.android.systemupdatersample.util.PackageFiles.PAYLOAD_BINARY_FILE_NAME;
116 File propertiesFile = new File(mTestDir, PackageFiles.PAYLOAD_PROPERTIES_FILE_NAME); in createMockPropertiesFile()