Home
last modified time | relevance | path

Searched refs:hw_property (Results 1 – 23 of 23) sorted by relevance

/tools/acloud/internal/lib/
Dcvd_compute_client.py152 metadata["cvd_01_x_res"] = avd_spec.hw_property[constants.HW_X_RES]
153 metadata["cvd_01_y_res"] = avd_spec.hw_property[constants.HW_Y_RES]
154 metadata["cvd_01_dpi"] = avd_spec.hw_property[constants.HW_ALIAS_DPI]
155 if constants.HW_ALIAS_DISK in avd_spec.hw_property:
156 metadata["cvd_01_blank_data_disk_size"] = avd_spec.hw_property[
162 avd_spec.hw_property[constants.HW_X_RES],
163 avd_spec.hw_property[constants.HW_Y_RES],
164 avd_spec.hw_property[constants.HW_ALIAS_DPI]))
204 if constants.HW_ALIAS_CPUS in avd_spec.hw_property:
206 avd_spec.hw_property[constants.HW_ALIAS_CPUS])
[all …]
Dcvd_compute_client_test.py163 fake_avd_spec.hw_property[constants.HW_X_RES] = str(self.X_RES)
164 fake_avd_spec.hw_property[constants.HW_Y_RES] = str(self.Y_RES)
165 fake_avd_spec.hw_property[constants.HW_ALIAS_DPI] = str(self.DPI)
166 fake_avd_spec.hw_property[constants.HW_ALIAS_DISK] = str(
171 fake_avd_spec.hw_property[constants.HW_X_RES],
172 fake_avd_spec.hw_property[constants.HW_Y_RES],
173 fake_avd_spec.hw_property[constants.HW_ALIAS_DPI]))
197 fake_avd_spec.hw_property = {}
198 fake_avd_spec.hw_property[constants.HW_ALIAS_CPUS] = "2"
199 fake_avd_spec.hw_property[constants.HW_ALIAS_MEMORY] = "4096"
[all …]
Dcheeps_compute_client.py79 metadata["cvd_01_x_res"] = avd_spec.hw_property[constants.HW_X_RES]
80 metadata["cvd_01_y_res"] = avd_spec.hw_property[constants.HW_Y_RES]
81 metadata["cvd_01_dpi"] = avd_spec.hw_property[constants.HW_ALIAS_DPI]
83 avd_spec.hw_property[constants.HW_X_RES],
84 avd_spec.hw_property[constants.HW_Y_RES],
85 avd_spec.hw_property[constants.HW_ALIAS_DPI]))
Dcvd_compute_client_multi_stage.py328 "-x_res=" + avd_spec.hw_property[constants.HW_X_RES])
330 "-y_res=" + avd_spec.hw_property[constants.HW_Y_RES])
332 "-dpi=" + avd_spec.hw_property[constants.HW_ALIAS_DPI])
333 if constants.HW_ALIAS_DISK in avd_spec.hw_property:
338 + avd_spec.hw_property[constants.HW_ALIAS_DISK])
339 if constants.HW_ALIAS_CPUS in avd_spec.hw_property:
341 "-cpus=%s" % avd_spec.hw_property[constants.HW_ALIAS_CPUS])
342 if constants.HW_ALIAS_MEMORY in avd_spec.hw_property:
344 "-memory_mb=%s" % avd_spec.hw_property[constants.HW_ALIAS_MEMORY])
493 avd_spec.hw_property[constants.HW_X_RES],
[all …]
Dgoldfish_compute_client.py232 metadata["cvd_01_x_res"] = avd_spec.hw_property[constants.HW_X_RES]
233 metadata["cvd_01_y_res"] = avd_spec.hw_property[constants.HW_Y_RES]
234 metadata["cvd_01_dpi"] = avd_spec.hw_property[constants.HW_ALIAS_DPI]
236 avd_spec.hw_property[constants.HW_X_RES],
237 avd_spec.hw_property[constants.HW_Y_RES],
238 avd_spec.hw_property[constants.HW_ALIAS_DPI]))
Dgoldfish_utils.py228 cores = avd_spec.hw_property.get(constants.HW_ALIAS_CPUS)
231 x_res = avd_spec.hw_property.get(constants.HW_X_RES)
232 y_res = avd_spec.hw_property.get(constants.HW_Y_RES)
235 dpi = avd_spec.hw_property.get(constants.HW_ALIAS_DPI)
238 memory_size_mb = avd_spec.hw_property.get(constants.HW_ALIAS_MEMORY)
241 userdata_size_mb = avd_spec.hw_property.get(constants.HW_ALIAS_DISK)
Dcvd_compute_client_multi_stage_test.py121 self.args.hw_property = "cpu:2,resolution:1080x1920,dpi:240,memory:4g,disk:10g"
226 fake_avd_spec.hw_property[constants.HW_X_RES] = str(self.X_RES)
227 fake_avd_spec.hw_property[constants.HW_Y_RES] = str(self.Y_RES)
228 fake_avd_spec.hw_property[constants.HW_ALIAS_DPI] = str(self.DPI)
229 fake_avd_spec.hw_property[constants.HW_ALIAS_DISK] = str(
234 fake_avd_spec.hw_property[constants.HW_X_RES],
235 fake_avd_spec.hw_property[constants.HW_Y_RES],
236 fake_avd_spec.hw_property[constants.HW_ALIAS_DPI]))
Dgoldfish_utils_test.py151 hw_property = {
159 hw_property=hw_property)
164 mock_spec = mock.Mock(hw_customize=True, gpu=None, hw_property={})
Dandroid_compute_client.py319 avd_spec.hw_property[constants.HW_X_RES],
320 avd_spec.hw_property[constants.HW_Y_RES],
321 avd_spec.hw_property[constants.HW_ALIAS_DPI]))
Dcheeps_compute_client_test.py106 avd_spec.hw_property = {constants.HW_X_RES: str(self.X_RES),
155 avd_spec.hw_property = {constants.HW_X_RES: str(self.X_RES),
Dandroid_compute_client_test.py128 fake_avd_spec.hw_property = {
Dutils.py1065 avd_width=avd_spec.hw_property["x_res"],
1066 avd_height=avd_spec.hw_property["y_res"],
/tools/acloud/create/
Dbase_avd_create.py81 utils.PrintColorString(" cpu - %s" % (avd_spec.hw_property[constants.HW_ALIAS_CPUS]))
83 int(avd_spec.hw_property[constants.HW_ALIAS_MEMORY]) / 1024))
84 if constants.HW_ALIAS_DISK in avd_spec.hw_property:
86 int(avd_spec.hw_property[constants.HW_ALIAS_DISK]) / 1024))
89 (avd_spec.hw_property[constants.HW_X_RES],
90 avd_spec.hw_property[constants.HW_Y_RES],
91 avd_spec.hw_property[constants.HW_ALIAS_DPI]))
Dlocal_image_local_instance.py237 hw_property = None
239 hw_property = avd_spec.hw_property
242 cmd = self.PrepareLaunchCVDCmd(hw_property,
486 def PrepareLaunchCVDCmd(hw_property, connect_adb, artifact_paths, argument
518 if hw_property:
520 hw_property["cpu"], hw_property["x_res"], hw_property["y_res"],
521 hw_property["dpi"], hw_property["memory"])
522 if constants.HW_ALIAS_DISK in hw_property:
524 hw_property[constants.HW_ALIAS_DISK])
Dlocal_image_local_instance_test.py387 hw_property = {"cpu": "fake", "x_res": "fake", "y_res": "fake",
402 hw_property, True, mock_artifact_paths, "fake_cvd_dir", False,
407 hw_property = {"cpu": "fake", "x_res": "fake", "y_res": "fake",
410 hw_property, True, mock_artifact_paths, "fake_cvd_dir", False,
416 hw_property, True, mock_artifact_paths, "fake_cvd_dir", False,
Davd_spec.py313 if self._cfg.hw_property:
315 cfg_hw_property = self._ParseHWPropertyStr(self._cfg.hw_property)
319 if args.hw_property:
321 arg_hw_property = self._ParseHWPropertyStr(args.hw_property)
755 def hw_property(self): member in AVDSpec
Davd_spec_test.py273 args.hw_property = "cpu:3,resolution:1280"
280 args.hw_property = "cpu:3,dpi:fake"
286 args.hw_property = "cpu:3,disk:2"
292 args.hw_property = "cpu:3,memory:2"
Dcreate_args_test.py33 hw_property=None,
Dcreate_args.py852 hw_properties = create_common.ParseKeyValuePairArgs(args.hw_property)
/tools/acloud/public/
Dconfig_test.py155 self.assertEqual(cfg.hw_property,
295 self.cfg.hw_property = ""
Dconfig.py234 self.hw_property = usr_cfg.hw_property
/tools/acloud/internal/proto/
Duser_config.proto82 // Desired hw_property
83 optional string hw_property = 22; field
/tools/acloud/public/actions/
Dremote_host_gf_device_factory_test.py179 self._mock_avd_spec.hw_property = {"disk": "4096"}