Home
last modified time | relevance | path

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

/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/services/
DPrepareUpdateService.java22 …port static com.example.android.systemupdatersample.util.PackageFiles.PAYLOAD_PROPERTIES_FILE_NAME;
119 PackageFiles.PAYLOAD_PROPERTIES_FILE_NAME
170 if (!UpdateConfigs.getPropertyFile(PAYLOAD_PROPERTIES_FILE_NAME, config).isPresent() in execute()
171 || !Paths.get(OTA_PACKAGE_DIR, PAYLOAD_PROPERTIES_FILE_NAME).toFile().exists()) { in execute()
172 throw new IOException(PAYLOAD_PROPERTIES_FILE_NAME + " not found"); in execute()
187 Paths.get(OTA_PACKAGE_DIR, PAYLOAD_PROPERTIES_FILE_NAME).toFile()); in execute()
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/util/
DPackageFiles.java45 public static final String PAYLOAD_PROPERTIES_FILE_NAME = "payload_properties.txt"; field in PackageFiles
DPayloadSpecs.java77 } else if (PackageFiles.PAYLOAD_PROPERTIES_FILE_NAME.equals(name)) { in forNonStreaming()
/bootable/recovery/updater_sample/tests/src/com/example/android/systemupdatersample/util/
DPayloadSpecsTest.java116 File propertiesFile = new File(mTestDir, PackageFiles.PAYLOAD_PROPERTIES_FILE_NAME); in createMockPropertiesFile()