HomeSort by relevance Sort by last modified time
    Searched refs:afe (Results 1 - 25 of 194) sorted by null

1 2 3 4 5 6 7 8

  /external/autotest/frontend/client/src/autotest/afe/
SiteClassFactory.java 1 package autotest.afe;
ClassFactory.java 1 package autotest.afe;
3 import autotest.afe.create.CreateJobViewPresenter.JobCreateListener;
4 import autotest.afe.create.CreateJobViewTab;
CheckBoxPanelDisplay.java 1 package autotest.afe;
3 import autotest.afe.ICheckBox.CheckBoxImpl;
RadioChooserDisplay.java 1 package autotest.afe;
3 import autotest.afe.IRadioButton.RadioButtonImpl;
ITextArea.java 1 package autotest.afe;
TestSelectorDisplay.java 1 package autotest.afe;
3 import autotest.afe.ITextBox;
4 import autotest.afe.ITextBox.TextBoxImpl;
5 import autotest.afe.TestSelector.IDataTable;
6 import autotest.afe.TestSelector.IDataTable.DataTableImpl;
7 import autotest.afe.TestSelector.ISelectionManager;
8 import autotest.afe.TestSelector.ISelectionManager.SelectionManagerImpl;
ControlTypeSelectDisplay.java 1 package autotest.afe;
3 import autotest.afe.IRadioButton.RadioButtonImpl;
IButton.java 1 package autotest.afe;
  /external/autotest/frontend/afe/
direct_afe_unittest.py 7 from autotest_lib.frontend.afe import direct_afe
12 afe = direct_afe.directAFE()
14 jobs = afe.get_jobs()
17 hosts = afe.get_hosts()
20 afe.create_host('a_host')
21 hosts = afe.get_hosts()
24 afe.create_job('job_name', hosts=['a_host'])
25 jobs = afe.get_jobs()
direct_afe.py 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
urls.py 3 from autotest_lib.frontend.afe.feeds import feed
10 urls_common.generate_patterns('frontend.afe', 'AfeClient'))
14 '', (r'^upload/', 'frontend.afe.views.handle_file_upload'))
19 (r'^model_doc/', 'frontend.afe.views.model_documentation'),
20 (r'^feeds/(?P<url>.*)/$', 'frontend.afe.feeds.feed.feed_view',
  /external/autotest/server/cros/network/
rf_switch_utils.py 18 Locks the available RF Switch if it was discovered via AFE to prevent tests
21 @return an instance of AFE host object or None.
23 afe = frontend.AFE(
26 rf_switch_hosts = afe.get_hosts(label=RF_SWITCH_LABEL, locked=False)
30 if afe.lock_host(rf_switch.hostname, LOCK_REASON):
41 @param rf_switch_host: an instance of AFE Host object to unlock.
45 afe = frontend.AFE(
47 afe.unlock_hosts([rf_switch_host.hostname]
    [all...]
  /external/autotest/contrib/
abortjob 13 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10)
15 afe.abort_jobs(jobs_to_abort)
manage_powerunit_info.py 55 def add_powerunit_info_to_host(afe, device, keyvals):
56 """Add keyvals to the host's attributes in AFE.
58 @param afe: AFE server to talk to.
62 are going to insert to AFE as host attributes.
64 if not afe.get_hosts(hostname=device):
70 afe.set_host_attribute(key, val, hostname=device)
73 def add_from_csv(afe, csv_file):
76 @param afe: AFE server to talk to
173 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10, variable
    [all...]
find_suite_tasks.py 30 parser.add_argument('--afe', type=str, action='store',
31 help='AFE server to connect to')
37 def GetSuiteHQEs(suite_job_id, look_past_seconds, afe=None, tko=None):
40 @param suite_job_id: Suite's AFE job id.
43 @param afe: AFE database handle.
50 if afe is None:
51 afe = frontend.AFE()
79 child_jobs = afe.get_jobs(parent_job_id=suite_job_id
    [all...]
  /external/autotest/site_utils/admin/scripts/
cli2hbs.sh 29 mkdir -p ${TARGET_DIR}/frontend/afe
31 touch ${TARGET_DIR}/frontend/afe/__init__.py
34 cp -fpruv ${AUTOTEST_DIR}/frontend/afe/json_rpc \
35 ${TARGET_DIR}/frontend/afe
36 cp -uv ${AUTOTEST_DIR}/frontend/afe/rpc_client_lib.py \
37 ${TARGET_DIR}/frontend/afe
39 ${AUTOTEST_TOOLS_DIR}/autotest/syncfiles/frontend/afe/site_rpc_client_lib.py \
40 ${TARGET_DIR}/frontend/afe
  /external/autotest/frontend/
django_lite_unittest.py 8 from autotest_lib.frontend.afe import frontend_test_utils
9 from autotest_lib.frontend.afe import models
setup_django_lite_environment.py 7 from autotest_lib.frontend.afe import readonly_connection
  /external/autotest/site_utils/chromeos_proxy/
swarming_bot_manager.py 39 parser.add_argument('afe', type=str,
40 help='AFE to get server role and status.')
77 def is_server_in_prod(server_name, afe):
81 @param afe: the afe server to get role & status info in server_db.
87 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10,
88 server=afe)
91 if afe.run('get_servers', hostname=server_name,
96 logging.warning('RPC get_servers failed on afe %s: %s', afe, str(e)
    [all...]
  /external/autotest/site_utils/deployment/
install.py 17 * The DUTs are not necessarily in the AFE database. DUTs that
34 * If the DUT isn't in the AFE database, add it.
100 """Exception when there is no servo port stored in the AFE."""
165 def _update_build(afe, report_log, arguments):
172 * The stable test version currently in the AFE database.
188 @param afe AFE object for RPC calls.
194 # Gather the current AFE and Omaha version settings, and report them
196 cros_version_map = afe.get_stable_version_map(afe.CROS_IMAGE_TYPE
    [all...]
  /external/autotest/site_utils/
abort_suite.py 54 def abort_suites(afe, substring):
62 @param afe: An instance of frontend.AFE to make RPCs with.
67 hqe_info = afe.run('abort_host_queue_entries',
90 afe = frontend.AFE()
93 abort_suites(afe, name)
add_detected_host_labels.py 40 def add_missing_labels(afe, hostname):
45 @param afe: A frontend.AFE() instance.
67 afe_host = afe.get_hosts(hostname=hostname)[0]
69 label_matches = afe.get_labels(name__in=labels)
82 afe_labels_to_delete = afe.get_labels(name__in=labels_to_delete)
125 afe = frontend.AFE()
130 hostnames = afe.get_hostnames()
132 lambda x: add_missing_labels(afe, x)
    [all...]
  /external/autotest/apache/conf/
django-directives 26 # AFE landing page and bring down cautotest by causing OOM.
28 RewriteRule ^/afe/server/admin/.* - [R=404]
29 RewriteRule ^/afe/server/admin - [R=404]
37 RewriteRule ^/(afe|new_tko)/server(.*) /usr/local/autotest/frontend/frontend.wsgi [H=wsgi-script]
40 RewriteRule ^/(afe|new_tko)/server(.*) /usr/lib/python2.7/site-packages/autotest/frontend/frontend.wsgi [H=wsgi-script]
43 RewriteRule ^/(afe|new_tko)/server(.*) /usr/lib/python2.6/site-packages/autotest/frontend/frontend.wsgi [H=wsgi-script]
46 RewriteRule ^/(afe|new_tko)/server(.*) /usr/lib/python2.5/site-packages/autotest/frontend/frontend.wsgi [H=wsgi-script]
49 RewriteRule ^/(afe|new_tko)/server(.*) /usr/lib/python2.4/site-packages/autotest/frontend/frontend.wsgi [H=wsgi-script]
51 <LocationMatch "/(afe|new_tko)/server(.*)">
75 <Location ~ "/(afe|new_tko)/server"
    [all...]
  /external/autotest/frontend/client/
AfeClient-shell 4 java -cp "$APPDIR/src:$APPDIR/bin:$GWTDIR/gwt-user.jar:$GWTDIR/gwt-dev-linux.jar:$GWTDIR/gwt-incubator.jar" com.google.gwt.dev.HostedMode -ea -startupUrl http://localhost:8000/afe/server/autotest.AfeClient/AfeClient.html "$@" autotest.AfeClient
  /external/autotest/frontend/client/src/autotest/afe/create/
CreateJobViewTab.java 1 package autotest.afe.create;
3 import autotest.afe.create.CreateJobViewPresenter.JobCreateListener;

Completed in 257 milliseconds

1 2 3 4 5 6 7 8