Home
last modified time | relevance | path

Searched refs:build_url (Results 1 – 7 of 7) sorted by relevance

/external/autotest/server/hosts/
Demulated_adb_host.py122 def stage_emulator_artifact(self, build_url): argument
131 build_info = self.get_build_info_from_build_url(build_url)
138 self.download_file(build_url, zipped_artifact, image_dir,
140 self.download_file(build_url, dtb_artifact, image_dir,
148 def setup_brillo_emulator(self, build_url, build_local_path=None): argument
174 build_local_path = self.stage_emulator_artifact(build_url)
207 '%s.', build_url)
210 def machine_install(self, build_url=None, build_local_path=None, wipe=True, argument
235 if not build_url and self._parser.options.image:
236 build_url, _ = self.stage_build_for_install(
[all …]
Dtestbed.py230 build_url = inputs['build_url']
237 host.hostname, host.adb_serial, build_url)
238 host.machine_install(build_url=build_url,
241 host.hostname, host.adb_serial, build_url)
363 build_url = None
373 build_url, _ = stage_host.stage_build_for_install(same_build)
376 build_url)
379 build_url)
387 return build_url, build_local_path, teststation
425 build_url, build_local_path, teststation = self._stage_shared_build(
[all …]
Dadb_host.py1280 def get_build_info_from_build_url(cls, build_url): argument
1290 if not build_url:
1294 match = re.match(DEVSERVER_URL_REGEX, build_url)
1302 'Failed to parse build url: %s\nError: %s' % (build_url, e))
1306 def download_file(self, build_url, file, dest_dir, unzip=False, argument
1320 if not build_url.endswith('/%s' % file):
1321 src_url = os.path.join(build_url, file)
1323 src_url = build_url
1337 def stage_android_image_files(self, build_url): argument
1346 build_info = self.get_build_info_from_build_url(build_url)
[all …]
/external/markdown/markdown/extensions/
Dwikilinks.py84 def build_url(label, base, end): function
97 'build_url' : [build_url, 'Callable formats URL from label.'],
/external/autotest/server/site_tests/brillo_Gtests/
Dbrillo_Gtests.py65 build_url = os.path.join(ds.url(), 'static', info.build)
67 host.get_build_info_from_build_url(build_url))
69 host.download_file(build_url, nativetests_file, tmp_dir, unzip=True)
/external/autotest/client/cros/
Dwebstore_test.py157 def build_url(self, page): member in webstore_test
172 return self.build_url("/detail/" + item_id)
/external/markdown/docs/extensions/
DWikiLinks.txt66 4. **build_url**: Callable which formats the URL from it's parts.
89 extension_configs={'wikilinks' : [('build_url', my_url_builder)]}