Searched refs:execute (Results 26 - 50 of 943) sorted by relevance

1234567891011>>

/external/autotest/tko/migrations/
H A D015_support_graphing_interface.py2 manager.execute(CREATE_QUERIES_TABLE)
3 manager.execute(CREATE_TEST_VIEW_OUTER_JOINS)
4 manager.execute(CREATE_PERF_VIEW_2)
7 manager.execute(DROP_QUERIES_TABLE)
8 manager.execute(DROP_TEST_VIEW_OUTER_JOINS)
9 manager.execute(DROP_PERF_VIEW_2)
H A D010_add_saved_queries.py16 manager.execute(UP_SQL)
20 manager.execute(DOWN_SQL)
H A D013_fix_perf_view.py2 manager.execute(ALTER_VIEWS_UP_SQL)
6 manager.execute(ALTER_VIEWS_DOWN_SQL)
H A D016_modify_perf_view_2.py4 manager.execute(prev_migration.DROP_PERF_VIEW_2)
5 manager.execute(CREATE_NEW_PERF_VIEW_2)
8 manager.execute(prev_migration.DROP_PERF_VIEW_2)
9 manager.execute(prev_migration.CREATE_PERF_VIEW_2)
H A D026_fix_saved_graphing_queries.py7 manager.execute(UP_SQL)
/external/autotest/frontend/migrations/
H A D022_implement_sync_count.py14 manager.execute("""ALTER TABLE host_queue_entries ADD COLUMN
18 rows = manager.execute("""
24 hqes = manager.execute("""
34 manager.execute(
39 manager.execute('UPDATE jobs SET synch_count = 1 WHERE synch_type = 1')
40 manager.execute('UPDATE jobs SET synch_count = 2 '
43 manager.execute('ALTER TABLE jobs DROP COLUMN synch_type')
44 manager.execute('ALTER TABLE autotests DROP COLUMN synch_type')
46 manager.execute('ALTER TABLE jobs DROP COLUMN synchronizing')
H A D086_add_invalidates_test_idx_to_tko_tests.py23 manager.execute(ADD_COLUMN)
24 manager.execute(ADD_INDEX)
25 manager.execute(ADD_FOREIGN_KEY)
34 manager.execute(DROP_FOREIGN_KEY)
35 manager.execute(DROP_COLUMN)
H A D011_support_one_time_hosts.py3 manager.execute(ADD_HOST_QUEUE_DELETED_COLUMN)
4 manager.execute(DROP_DEFAULT)
7 manager.execute(DROP_HOST_QUEUE_DELETED_COLUMN)
H A D017_add_email_list.py2 manager.execute(ADD_COLUMN)
5 manager.execute(DROP_COLUMN)
H A D012_reset_access_levels.py2 manager.execute('UPDATE users SET access_level = 0')
H A D008_add_profiler_table.py6 manager.execute("DROP TABLE IF EXISTS 'profilers'")
H A D009_add_timeout_to_jobs.py8 manager.execute(ADD_COLUMN)
9 manager.execute(DROP_DEFAULT)
12 manager.execute(DROP_COLUMN)
H A D004_add_indexes.py16 manager.execute('CREATE INDEX %s ON %s (%s)' %
22 manager.execute('DROP INDEX %s ON %s' %
H A D007_indexes_on_acl_tables.py14 manager.execute('CREATE INDEX %s ON %s (%s)' %
20 manager.execute('DROP INDEX %s ON %s' %
H A D062_drone_sets_unique.py42 rows = manager.execute(query)
51 manager.execute(DROP_KEY_SQL)
H A D042_unique_index_on_hqe_job_and_host.py23 rows = manager.execute('SELECT id FROM host_queue_entries '
31 manager.execute('UPDATE host_queue_entries '
41 rows = manager.execute('SELECT GROUP_CONCAT(id), COUNT(1) AS count '
/external/autotest/client/tests/error_cleanup/
H A Derror_cleanup.py7 def execute(self): member in class:error_cleanup
/external/autotest/client/tests/error_initialize/
H A Derror_initialize.py11 def execute(self): member in class:error_initialize
/external/autotest/client/tests/error_setup/
H A Derror_setup.py10 def execute(self): member in class:error_setup
/external/apache-http/src/org/apache/http/client/
H A DHttpClient.java47 * execute HTTP requests while handling cookies, authentication,
91 * @param request the request to execute
101 HttpResponse execute(HttpUriRequest request) method in interface:HttpClient
110 * @param request the request to execute
122 HttpResponse execute(HttpUriRequest request, HttpContext context) method in interface:HttpClient
134 * @param request the request to execute
144 HttpResponse execute(HttpHost target, HttpRequest request) method in interface:HttpClient
155 * @param request the request to execute
167 HttpResponse execute(HttpHost target, HttpRequest request, method in interface:HttpClient
176 * @param request the request to execute
183 <T> T execute( method in interface:HttpClient
200 <T> T execute( method in interface:HttpClient
222 <T> T execute( method in interface:HttpClient
246 <T> T execute( method in interface:HttpClient
[all...]
/external/autotest/frontend/client/src/autotest/tko/
H A DTestContextMenu.java24 public void execute() {
34 public void execute() {
39 public void execute() {
44 public void execute() {
49 public void execute() {
/external/dbus/test/name-test/
H A Drun-test.sh34 ${DBUS_TOP_BUILDDIR}/libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-ids || die "test-ids failed"
37 ${DBUS_TOP_BUILDDIR}/libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-pending-call-dispatch || die "test-pending-call-dispatch failed"
40 ${DBUS_TOP_BUILDDIR}/libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-pending-call-timeout || die "test-pending-call-timeout failed"
43 ${DBUS_TOP_BUILDDIR}/libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-threads-init || die "test-threads-init failed"
46 ${DBUS_TOP_BUILDDIR}/libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-privserver-client || die "test-privserver-client failed"
49 ${DBUS_TOP_BUILDDIR}/libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-shutdown || die "test-shutdown failed"
60 ${DBUS_TOP_BUILDDIR}/libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-autolaunch || die "test-autolaunch failed"
/external/xmlrpcpp/test/
H A DHelloClient.cpp20 if (c.execute("system.listMethods", noArgs, result))
28 if (c.execute("system.methodHelp", oneArg, result))
34 if (c.execute("Hello", noArgs, result))
41 if (c.execute("HelloName", oneArg, result))
52 if (c.execute("Sum", numbers, result))
58 if (c.execute("NoSuchMethod", numbers, result))
79 if (c.execute("system.multicall", multicall, result))
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncStartsWith.java43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncStartsWith
45 return m_arg0.execute(xctxt).xstr().startsWith(m_arg1.execute(xctxt).xstr())
H A DFuncSubstringBefore.java43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException method in class:FuncSubstringBefore
46 String s1 = m_arg0.execute(xctxt).str();
47 String s2 = m_arg1.execute(xctxt).str();

Completed in 332 milliseconds

1234567891011>>