Home
last modified time | relevance | path

Searched refs:remote_image (Results 1 – 13 of 13) sorted by relevance

/tools/acloud/internal/lib/
Dcheeps_compute_client.py91 if avd_spec.remote_image[constants.BUILD_ID]:
92 metadata['android_build_id'] = avd_spec.remote_image[constants.BUILD_ID]
94 if avd_spec.remote_image[constants.BUILD_TARGET]:
95 metadata['android_build_target'] = avd_spec.remote_image[constants.BUILD_TARGET]
Dcheeps_compute_client_test.py106 avd_spec.remote_image = {
/tools/acloud/public/actions/
Dremote_instance_cf_device_factory.py130 build_id = self._avd_spec.remote_image[constants.BUILD_ID]
158 build_id = self._avd_spec.remote_image[constants.BUILD_ID]
159 build_target = self._avd_spec.remote_image[constants.BUILD_TARGET]
162 remote_image = "%s-img-%s.zip" % (build_target.split('-')[0], build_id)
164 cfg, build_target, build_id, remote_image, extract_path, decompress=True)
215 self._avd_spec.remote_image[constants.BUILD_ID],
216 self._avd_spec.remote_image[constants.BUILD_BRANCH],
217 self._avd_spec.remote_image[constants.BUILD_TARGET],
266 build_id = self._avd_spec.remote_image[constants.BUILD_ID]
267 build_target = self._avd_spec.remote_image[constants.BUILD_TARGET]
[all …]
Dremote_instance_cf_device_factory_test.py349 fake_avd_spec.remote_image = fake_remote_image
Dcreate_goldfish_action_test.py73 self.avd_spec.remote_image = {constants.BUILD_ID: self.BUILD_ID,
/tools/acloud/create/
Dcreate_common_test.py108 avd_spec.remote_image = {"build_target" : "aosp_cf_x86_phone-userdebug",
118 avd_spec.remote_image["build_target"],
119 avd_spec.remote_image["build_id"],
136 avd_spec.remote_image["build_target"],
137 avd_spec.remote_image["build_id"],
Dremote_image_local_instance.py66 build_id = avd_spec.remote_image[constants.BUILD_ID]
67 build_target = avd_spec.remote_image[constants.BUILD_TARGET]
79 remote_image = "%s-img-%s.zip" % (build_target.split('-')[0],
81 artifacts = [constants.CVD_HOST_PACKAGE, remote_image]
Dcheeps_remote_image_remote_instance.py50 avd_spec.cfg.project, avd_spec.remote_image[constants.BUILD_ID])
103 return {"build_id": self._avd_spec.remote_image[constants.BUILD_ID]}
112 build_id=self._avd_spec.remote_image[constants.BUILD_ID],
113 build_target=self._avd_spec.remote_image[constants.BUILD_TARGET])
Dbase_avd_create.py77 (avd_spec.remote_image[constants.BUILD_BRANCH],
78 avd_spec.remote_image[constants.BUILD_TARGET],
79 avd_spec.remote_image[constants.BUILD_ID]))
Dgce_remote_image_remote_instance.py48 avd_spec.remote_image[constants.BUILD_TARGET],
49 avd_spec.remote_image[constants.BUILD_ID],
Dcheeps_remote_image_remote_instance_test.py73 avd_spec.remote_image = {constants.BUILD_ID: self.ANDROID_BUILD_ID,
Dremote_image_local_instance_test.py72 avd_spec.remote_image = self._fake_remote_image
Davd_spec.py707 def remote_image(self): member in AVDSpec