Searched defs:frontend (Results 1 - 25 of 58) sorted by relevance

123

/external/autotest/contrib/
H A Dreverify_hosts12 from autotest_lib.server import frontend namespace
23 frontend.AFE().reverify_hosts(hostnames=sys.argv[1:])
H A Dshared_hosts.py8 from autotest_lib.server import frontend namespace
10 cautotest = frontend.AFE(server='cautotest')
11 cautotest_cq = frontend.AFE(server='cautotest-cq')
H A Dstage_build.py13 from autotest_lib.server import frontend namespace
45 AFE = frontend.AFE()
H A Dfind_suite_tasks.py9 from autotest_lib.server import frontend namespace
51 afe = frontend.AFE()
53 tko = frontend.TKO()
167 afe = frontend.AFE(server=options.afe)
168 tko = frontend.TKO()
/external/autotest/frontend/afe/
H A Ddirect_afe.py7 import autotest_lib.server.frontend as frontend namespace
8 from autotest_lib.frontend.afe import rpc_interface
10 class directAFE(frontend.AFE):
12 A wrapper for frontend.AFE which exposes all of the AFE
H A Dcontrol_file.py12 from autotest_lib.frontend.afe import model_logic
15 import frontend.settings namespace
18 os.path.dirname(frontend.settings.__file__), '..'))
/external/autotest/tko/
H A Dquery_lib.py13 from autotest_lib.tko import frontend namespace
H A Dtest.cgi13 from autotest_lib.tko import db, display, frontend namespace
33 tests = frontend.test.select_sql(db, sql, values)
H A Dmachine_benchmark.cgi8 from autotest_lib.tko import db, display, frontend namespace
H A Dmachine_test_attribute_graph.cgi10 from autotest_lib.tko import db, display, frontend, plotgraph namespace
21 machine = frontend.machine.select(db, {'machine_idx' : machine_idx})[0]
25 for test in frontend.test.select(db, where):
H A Dmachine_aggr.cgi10 from autotest_lib.tko import db, display, frontend, plotgraph namespace
49 machine = frontend.machine.select(db, {'hostname' : machine_idx})[0]
69 for test in frontend.test.select(db, where):
86 kernel_base = frontend.kernel.select(db, {'printable' : kernels_sort[0]})[0]
87 for test in frontend.test.select(db, { 'subdir' : benchmark, 'machine_idx' : machine.idx, 'kernel_idx' : kernel_base.idx}):
94 for test in frontend.test.select(db, where, wherein):
/external/autotest/utils/
H A Dreverify_repair_failed.py14 from autotest_lib.server import frontend namespace
21 help='Hostname of the autotest frontend RPC server.')
26 afe_client = frontend.AFE(debug=False, server=options.server)
H A Dtko_publish.py15 from autotest_lib.server import frontend namespace
62 afe = frontend.AFE()
/external/autotest/server/
H A Dfrontend_unittest.py6 """Tests for server.frontend."""
15 from autotest_lib.frontend.afe import rpc_client_lib
16 from autotest_lib.server import frontend namespace
44 frontend.RpcClient('/path', None, None, None, None, None)
/external/autotest/server/lib/
H A Dsuite_report.py13 from autotest_lib.server import frontend namespace
88 @param job: A frontend.Job to generate an entry for.
166 afe = frontend.AFE()
168 tko = frontend.TKO()
/external/autotest/site_utils/
H A Dabort_suite.py33 from autotest_lib.server import frontend namespace
62 @param afe: An instance of frontend.AFE to make RPCs with.
89 afe = frontend.AFE()
H A Dadd_detected_host_labels.py31 from autotest_lib.server import frontend namespace
45 @param afe: A frontend.AFE() instance.
125 afe = frontend.AFE()
H A Dsync_cloudsql_access.py33 from autotest_lib.server import frontend namespace
58 @param afe: Server of the frontend RPC, default to None to use the server
64 rpc = frontend.AFE(server=afe)
H A Ddeploy_server.py14 from autotest_lib.server import frontend namespace
48 rpc = frontend.AFE(server=afe)
/external/autotest/site_utils/suite_scheduler/
H A Dboard_enumerator_unittest.py14 from autotest_lib.server import frontend namespace
24 self.afe = self.mox.CreateMock(frontend.AFE)
30 """Creates a mock frontend.Label, with the given name."""
31 mock = self.mox.CreateMock(frontend.Label)
/external/autotest/cli/
H A Datest_migrate_host5 from autotest_lib.server import frontend namespace
8 old = frontend.AFE(web_server='http://' + sys.argv[1])
9 new = frontend.AFE(web_server='http://' + sys.argv[2])
H A Dcompose_query9 from autotest_lib.tko import display, frontend, db, query_lib namespace
22 options.condition, frontend.test_view_field_dict)
29 test_data = frontend.get_matrix_data(db, options.x_axis, options.y_axis, where)
/external/autotest/server/cros/dynamic_suite/
H A Dtools_unittest.py17 from autotest_lib.server import frontend namespace
32 self.afe = self.mox.CreateMock(frontend.AFE)
33 self.tko = self.mox.CreateMock(frontend.TKO)
/external/autotest/server/hosts/
H A Dafe_store_unittest.py9 from autotest_lib.frontend.afe.json_rpc import proxy as rpc_proxy
10 from autotest_lib.server import frontend namespace
19 self.mock_afe = mock.create_autospec(frontend.AFE, instance=True)
24 """Create a mock frontend.Host with the given labels and attributes.
28 @returns: A mock object for frontend.Host.
30 mock_host = mock.create_autospec(frontend.Host, instance=True)
/external/autotest/test_suites/
H A Ddev_harness.py8 from autotest_lib.server import frontend namespace
48 AFE = frontend.AFE(debug=True)

Completed in 2834 milliseconds

123