/external/autotest/server/ |
host_attributes.py | 21 class host_attributes(site_host_attributes): class in inherits:site_host_attributes
|
autoserv_utils.py | 33 host_attributes=None): 65 @param host_attributes: Dict of host attributes to pass into autoserv. 114 if host_attributes: 115 command += ['--host_attributes', repr(host_attributes)]
|
site_server_job_utils.py | 12 and the host attributes from host_attributes. 18 from autotest_lib.server import autotest, hosts, host_attributes namespace 149 client_attributes = host_attributes.host_attributes(machine)
|
autoserv_parser.py | 205 self.parser.add_argument('--host_attributes', action='store', 206 dest='host_attributes', default='{}', 253 self.options.host_attributes = ast.literal_eval( 254 self.options.host_attributes)
|
site_gtest_runner.py | 14 from autotest_lib.server import autotest, hosts, host_attributes namespace 50 client_attributes = host_attributes.host_attributes(machine)
|
autoserv | 445 host_attributes = parser.options.host_attributes 483 if host_attributes: 484 kwargs['host_attributes'] = host_attributes
|
server_job.py | 158 parent_job_id=None, host_attributes=None, in_lab=False): 188 @param host_attributes: Dict of host attributes passed into autoserv 282 host_attributes = host_attributes or {} 285 host_attributes.update(host.attributes) 288 'host_attributes' : host_attributes}) 512 # [{'host_attributes': {}, 'hostname': '100.96.51.226'}] [all...] |
/external/autotest/server/hosts/ |
factory.py | 123 Optional 'host_attributes' key will pipe in host_attributes 135 hostname, host_attributes = server_utils.get_host_info_from_machine( 137 args['host_attributes'] = host_attributes 149 host_attributes = args.get('host_attributes', {}) 150 host_class = host_class or OS_HOST_DICT.get(host_attributes.get('os_type')) 176 Optional 'host_attributes' key will pipe in host_attributes [all...] |
testbed.py | 35 def __init__(self, hostname='localhost', host_attributes={}, 50 serials_from_attributes = host_attributes.get('serials')
|
abstract_ssh.py | 28 is_client_install_supported=True, host_attributes={}, 55 self.host_attributes = host_attributes [all...] |
adb_host.py | 190 adb_serial = adb_serial or self.host_attributes.get('serials', None) [all...] |
/external/autotest/site_utils/ |
test_droid.py | 100 host_attributes = {'serials' : arguments.serials, 124 host_attributes=host_attributes)
|
test_runner_utils.py | 252 autoserv_verbose=False, host_attributes={}): 273 @param host_attributes: Dict of host attributes to pass into autoserv. 303 host_attributes=host_attributes) 443 host_attributes={}): 472 @param host_attributes: Dict of host attributes to pass into autoserv. 534 pretend, autoserv_verbose, host_attributes) 613 host_attributes={}): 645 @param host_attributes: Dict of host attributes to pass into autoserv. 678 host_attributes=host_attributes [all...] |