Home
last modified time | relevance | path

Searched refs:set_host_attribute (Results 1 – 11 of 11) sorted by relevance

/external/autotest/server/hosts/
Dafe_store_unittest.py95 self.assertEqual(self.mock_afe.set_host_attribute.call_count, 1)
96 self.mock_afe.set_host_attribute.assert_called_once_with(
106 self.assertEqual(self.mock_afe.set_host_attribute.call_count, 1)
107 self.mock_afe.set_host_attribute.assert_called_once_with(
117 self.assertEqual(self.mock_afe.set_host_attribute.call_count, 1)
118 self.mock_afe.set_host_attribute.assert_called_once_with(
Dafe_store.py115 self._afe.set_host_attribute(key, None, hostname=self._hostname)
117 self._afe.set_host_attribute(key, new_attributes[key],
Dcros_host.py1315 afe.set_host_attribute(self._RPM_OUTLET_CHANGED, None,
1328 afe.set_host_attribute(self._RPM_OUTLET_CHANGED, None,
1901 afe.set_host_attribute(self._RPM_OUTLET_CHANGED, True,
/external/autotest/contrib/
Dstage_build.py46 AFE.set_host_attribute('job_repo_url', repo_url, hostname=options.host)
Dmanage_powerunit_info.py70 afe.set_host_attribute(key, val, hostname=device)
/external/autotest/test_suites/
Ddev_harness.py56 AFE.set_host_attribute(constants.JOB_REPO_URL, repo_url, hostname=m)
/external/autotest/site_utils/deployment/
Dinstall.py325 afe.set_host_attribute(servo_host.SERVO_HOST_ATTR,
328 afe.set_host_attribute(servo_host.SERVO_PORT_ATTR,
332 afe.set_host_attribute(servo_host.SERVO_SERIAL_ATTR,
/external/autotest/server/
Dafe_utils.py185 AFE.set_host_attribute(attribute, value, hostname=host.hostname)
Dfrontend.py558 def set_host_attribute(self, attr, val, **dargs): member in AFE
/external/autotest/frontend/afe/doctests/
D001_rpc_test.txt339 >>> rpc_interface.set_host_attribute('color', 'red', hostname='host1')
344 >>> rpc_interface.set_host_attribute('color', None, hostname='host1')
/external/autotest/frontend/afe/
Drpc_interface.py482 def set_host_attribute(attribute, value, **host_filter_data): function