Home
last modified time | relevance | path

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

/external/autotest/server/hosts/
Dafe_store_unittest.py101 self.assertEqual(self.mock_afe.set_host_attribute.call_count, 1)
102 self.mock_afe.set_host_attribute.assert_called_once_with(
112 self.assertEqual(self.mock_afe.set_host_attribute.call_count, 1)
113 self.mock_afe.set_host_attribute.assert_called_once_with(
123 self.assertEqual(self.mock_afe.set_host_attribute.call_count, 1)
124 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],
/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/site_utils/deployment/
Dinstall.py255 afe.set_host_attribute(servo_constants.SERVO_HOST_ATTR,
258 afe.set_host_attribute(servo_constants.SERVO_PORT_ATTR,
262 afe.set_host_attribute(servo_constants.SERVO_SERIAL_ATTR,
/external/autotest/server/
Dfrontend.py534 def set_host_attribute(self, attr, val, **dargs): member in AFE
/external/autotest/frontend/afe/
Drpc_interface.py583 def set_host_attribute(attribute, value, **host_filter_data): function