Searched refs:url (Results 1 – 8 of 8) sorted by relevance
/bootable/recovery/updater_sample/tools/ |
D | gen_update_config.py | 51 url, argument 56 self.url = url 83 'url': self.url, 161 url=args.url,
|
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/util/ |
D | FileDownloader.java | 43 public FileDownloader(String url, long offset, long size, File destination) { in FileDownloader() argument 44 this.mUrl = url; in FileDownloader() 59 URL url = new URL(mUrl); in download() local 60 URLConnection connection = url.openConnection(); in download()
|
D | PayloadSpecs.java | 95 .url("file://" + packageFile.getAbsolutePath()) in forNonStreaming() 110 .url(updateUrl) in forStreaming()
|
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/ |
D | PayloadSpec.java | 89 public Builder url(String url) { in url() method in PayloadSpec.Builder 90 this.mUrl = url; in url()
|
D | UpdateConfig.java | 129 public UpdateConfig(String name, String url, int installType) { in UpdateConfig() argument 131 this.mUrl = url; in UpdateConfig()
|
/bootable/recovery/updater_sample/tests/src/com/example/android/systemupdatersample/util/ |
D | PayloadSpecsTest.java | 102 String url = "http://a.com/b.zip"; in forStreaming_works() local 107 PayloadSpec spec = mPayloadSpecs.forStreaming(url, offset, size, propertiesFile); in forStreaming_works() 108 assertEquals("same url", url, spec.getUrl()); in forStreaming_works()
|
D | FileDownloaderTest.java | 67 String url = "file://" + packageFile.getAbsolutePath(); in download_downloadsChunkOfZip() local 74 FileDownloader downloader = new FileDownloader(url, 1674, 12, outFile); in download_downloadsChunkOfZip()
|
/bootable/recovery/updater_sample/ |
D | README.md | 32 SystemUpdaterSample app downloads OTA package from `url`. In this sample app 33 `url` is expected to point to file system, e.g. `file:///data/my-sample-ota-builds-dir/ota-002.zip`. 35 If `ab_install_type` is `NON_STREAMING` then app checks if `url` starts 36 with `file://` and passes `url` to the `update_engine`.
|