Searched refs:build_local_path (Results 1 – 3 of 3) sorted by relevance
/external/autotest/server/hosts/ |
D | emulated_adb_host.py | 148 def setup_brillo_emulator(self, build_url, build_local_path=None): argument 169 delete_build_folder = bool(not build_local_path) 173 if not build_local_path: 174 build_local_path = self.stage_emulator_artifact(build_url) 180 os.path.join(build_local_path, 'IMAGES', 'system.img'), 184 os.path.join(build_local_path, 'IMAGES', 'userdata.img'), 188 os.path.join(build_local_path, 'BOOT', 'kernel'), 191 self.teststation.run('mv %s/*.dtb %s' % (build_local_path, 205 self.teststation.run('rm -rf %s' % build_local_path) 210 def machine_install(self, build_url=None, build_local_path=None, wipe=True, argument [all …]
|
D | testbed.py | 231 build_local_path = inputs['build_local_path'] 239 build_local_path=build_local_path) 332 build_local_path = None 345 build_local_path = stage_host.stage_android_image_files( 348 build_local_path = stage_host.stage_brillo_image_files( 357 return build_url, build_local_path, teststation 395 build_url, build_local_path, teststation = self._stage_shared_build( 410 'build_local_path': build_local_path}) 419 if build_local_path: 421 teststation.hostname, build_local_path) [all …]
|
D | adb_host.py | 1403 def install_android(self, build_url, build_local_path=None, wipe=True, argument 1429 delete_build_folder = bool(not build_local_path) 1433 if not build_local_path: 1434 build_local_path = self.stage_android_image_files(build_url) 1443 list_file_cmd = 'ls -d %s' % os.path.join(build_local_path, '*.img') 1473 self.teststation.run('rm -rf %s' % build_local_path) 1490 def install_brillo(self, build_url, build_local_path=None): argument 1511 delete_build_folder = bool(not build_local_path) 1515 if not build_local_path: 1516 build_local_path = self.stage_brillo_image_files(build_url) [all …]
|