/tools/acloud/create/ |
D | base_avd_create.py | 81 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]))
|
D | local_image_local_instance.py | 294 hw_property = None 296 hw_property = avd_spec.hw_property 300 cmd = self.PrepareLaunchCVDCmd(hw_property, 572 def PrepareLaunchCVDCmd(hw_property, connect_adb, connect_fastboot, argument 610 if hw_property: 612 hw_property["cpu"], hw_property["x_res"], hw_property["y_res"], 613 hw_property["dpi"], hw_property["memory"]) 614 if constants.HW_ALIAS_DISK in hw_property: 617 hw_property[constants.HW_ALIAS_DISK])
|
D | local_image_local_instance_test.py | 481 hw_property = {"cpu": "fake", "x_res": "fake", "y_res": "fake", 502 hw_property, True, True, mock_artifact_paths, "fake_cvd_dir", False, 507 hw_property = {"cpu": "fake", "x_res": "fake", "y_res": "fake", 510 hw_property, True, True, mock_artifact_paths, "fake_cvd_dir", False, 516 hw_property, True, True, mock_artifact_paths, "fake_cvd_dir", False,
|
D | avd_spec.py | 328 if self._cfg.hw_property: 330 cfg_hw_property = self._ParseHWPropertyStr(self._cfg.hw_property) 334 if args.hw_property: 336 arg_hw_property = self._ParseHWPropertyStr(args.hw_property) 795 def hw_property(self): member in AVDSpec
|
D | avd_spec_test.py | 278 args.hw_property = "cpu:3,resolution:1280" 285 args.hw_property = "cpu:3,dpi:fake" 291 args.hw_property = "cpu:3,disk:2" 297 args.hw_property = "cpu:3,memory:2"
|
D | create_args_test.py | 34 hw_property=None,
|
D | create_args.py | 965 hw_properties = create_common.ParseKeyValuePairArgs(args.hw_property)
|
/tools/acloud/internal/lib/ |
D | cheeps_compute_client.py | 79 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]))
|
D | goldfish_compute_client.py | 236 metadata["cvd_01_x_res"] = avd_spec.hw_property[constants.HW_X_RES] 237 metadata["cvd_01_y_res"] = avd_spec.hw_property[constants.HW_Y_RES] 238 metadata["cvd_01_dpi"] = avd_spec.hw_property[constants.HW_ALIAS_DPI] 240 avd_spec.hw_property[constants.HW_X_RES], 241 avd_spec.hw_property[constants.HW_Y_RES], 242 avd_spec.hw_property[constants.HW_ALIAS_DPI]))
|
D | cvd_compute_client_multi_stage_test.py | 121 self.args.hw_property = "cpu:2,resolution:1080x1920,dpi:240,memory:4g,disk:10g" 146 fake_avd_spec.hw_property[constants.HW_X_RES] = str(self.X_RES) 147 fake_avd_spec.hw_property[constants.HW_Y_RES] = str(self.Y_RES) 148 fake_avd_spec.hw_property[constants.HW_ALIAS_DPI] = str(self.DPI) 149 fake_avd_spec.hw_property[constants.HW_ALIAS_DISK] = str( 157 fake_avd_spec.hw_property[constants.HW_X_RES], 158 fake_avd_spec.hw_property[constants.HW_Y_RES], 159 fake_avd_spec.hw_property[constants.HW_ALIAS_DPI]))
|
D | goldfish_utils.py | 272 cores = avd_spec.hw_property.get(constants.HW_ALIAS_CPUS) 275 x_res = avd_spec.hw_property.get(constants.HW_X_RES) 276 y_res = avd_spec.hw_property.get(constants.HW_Y_RES) 279 dpi = avd_spec.hw_property.get(constants.HW_ALIAS_DPI) 282 memory_size_mb = avd_spec.hw_property.get(constants.HW_ALIAS_MEMORY) 285 userdata_size_mb = avd_spec.hw_property.get(constants.HW_ALIAS_DISK)
|
D | cvd_utils.py | 532 "-x_res=" + avd_spec.hw_property[constants.HW_X_RES]) 534 "-y_res=" + avd_spec.hw_property[constants.HW_Y_RES]) 536 "-dpi=" + avd_spec.hw_property[constants.HW_ALIAS_DPI]) 537 if constants.HW_ALIAS_DISK in avd_spec.hw_property: 542 + avd_spec.hw_property[constants.HW_ALIAS_DISK]) 543 if constants.HW_ALIAS_CPUS in avd_spec.hw_property: 545 "-cpus=" + str(avd_spec.hw_property[constants.HW_ALIAS_CPUS])) 546 if constants.HW_ALIAS_MEMORY in avd_spec.hw_property: 549 str(avd_spec.hw_property[constants.HW_ALIAS_MEMORY]))
|
D | cvd_utils_test.py | 273 hw_property = { 281 hw_property=hw_property, 297 hw_property = { 308 hw_property=hw_property,
|
D | goldfish_utils_test.py | 181 hw_property = { 189 hw_property=hw_property) 194 mock_spec = mock.Mock(hw_customize=True, gpu=None, hw_property={})
|
D | android_compute_client.py | 320 avd_spec.hw_property[constants.HW_X_RES], 321 avd_spec.hw_property[constants.HW_Y_RES], 322 avd_spec.hw_property[constants.HW_ALIAS_DPI]))
|
D | cvd_compute_client_multi_stage.py | 330 avd_spec.hw_property[constants.HW_X_RES], 331 avd_spec.hw_property[constants.HW_Y_RES], 332 avd_spec.hw_property[constants.HW_ALIAS_DPI]))
|
D | cheeps_compute_client_test.py | 106 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),
|
D | android_compute_client_test.py | 128 fake_avd_spec.hw_property = {
|
D | utils.py | 1105 avd_width=avd_spec.hw_property["x_res"], 1106 avd_height=avd_spec.hw_property["y_res"],
|
/tools/acloud/public/ |
D | config_test.py | 155 self.assertEqual(cfg.hw_property, 295 self.cfg.hw_property = ""
|
D | config.py | 234 self.hw_property = usr_cfg.hw_property
|
/tools/acloud/internal/proto/ |
D | user_config.proto | 82 // Desired hw_property 83 optional string hw_property = 22; field
|
/tools/acloud/public/actions/ |
D | remote_host_gf_device_factory_test.py | 205 self._mock_avd_spec.hw_property = {"disk": "4096"}
|