Home
last modified time | relevance | path

Searched refs:PackageFile (Results 1 – 3 of 3) sorted by relevance

/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/
DUpdateConfig.java76 ArrayList<PackageFile> propertyFiles = new ArrayList<>(); in fromJson()
81 propertyFiles.add(new PackageFile( in fromJson()
91 propertyFiles.toArray(new PackageFile[0]), in fromJson()
185 public static class PackageFile implements Serializable { class in UpdateConfig
198 public PackageFile(String filename, long offset, long size) { in PackageFile() method in UpdateConfig.PackageFile
237 private PackageFile[] mPropertyFiles;
249 PackageFile[] propertyFiles, in AbConfig()
265 public PackageFile[] getPropertyFiles() { in getPropertyFiles()
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/services/
DPrepareUpdateService.java162 Optional<UpdateConfig.PackageFile> payloadBinary = in execute()
199 Optional<UpdateConfig.PackageFile> metadataPackageFile = in verifyPayloadMetadata()
246 for (UpdateConfig.PackageFile file : config.getAbConfig().getPropertyFiles()) { in downloadPreStreamingFiles()
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/util/
DUpdateConfigs.java90 public static Optional<UpdateConfig.PackageFile> getPropertyFile( in getPropertyFile()