HomeSort by relevance Sort by last modified time
    Searched defs:execute (Results 201 - 225 of 2877) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/autotest/site_utils/
mysql_bootstrap.py 13 we ssh into A2 and execute the grant privileges command for (A1_user,
19 Execute mysql -u <default_user> -p<default_pass> -e
36 Execute mysql -u <default_user> -p<default_pass> -e
82 @param cmd: The mysql command to wrap with the --execute option.
93 def execute(dest_server, full_cmd): member in class:MySQLCommandExecutor
94 """Execute a mysql statement on a remote server by sshing into it.
97 @param full_cmd: The full mysql command to execute.
104 raise MySQLCommandError('Failed to execute %s against %s' %
118 ssh/become into the db_server and execute the command with
132 cls.execute(ssh_dest_server, ping
    [all...]
pubsub_utils_unittest.py 53 def execute(self, num_retries): member in class:MockedPubSub
54 """Mocked PubSub execute method.
  /external/deqp/scripts/
run_internal_tests.py 36 def execute (args, workDir = None): function
43 raise Exception("Failed to execute %s, got %d" % (str(args), retcode))
62 execute(["cmake", os.path.realpath(config.srcPath)] + config.genParams, workDir = config.buildPath)
68 execute(["cmake", "."], workDir = config.buildPath)
77 execute(["cmake", "--build", "."] + config.buildParams, workDir = config.buildPath)
95 execute([config.testBinaryName, "--deqp-runmode=xml-caselist"], workDir = testWorkDir)
110 execute(args)
113 execute([junitToolPath, batchResultFile, junitFile])
  /external/devlib/devlib/
host.py 58 def execute(self, command, timeout=None, check_exit_code=True, member in class:LocalConnection
  /external/devlib/devlib/instrument/
daq.py 45 result = self.execute('list_devices')
67 self.execute('close')
68 result = self.execute('configure', config=self.device_config)
77 self.execute('start')
80 self.execute('stop')
85 self.execute('get_data', output_directory=tempdir)
141 self.execute('close')
143 def execute(self, command, **kwargs): member in class:DaqInstrument
  /external/guava/guava/src/com/google/common/eventbus/
AsyncEventBus.java 113 executor.execute(
  /external/guava/guava/src/com/google/common/util/concurrent/
ForwardingExecutorService.java 100 public void execute(Runnable command) { method in class:ForwardingExecutorService
101 delegate().execute(command);
ListenableFutureTask.java 46 * Creates a {@code ListenableFutureTask} that will upon running, execute the
57 * Creates a {@code ListenableFutureTask} that will upon running, execute the
91 executionList.execute();
  /external/guice/extensions/struts2/example/src/com/google/inject/struts2/example/
Count.java 34 public String execute() { method in class:Count
  /external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
AbstractJacocoMojo.java 55 public final void execute() throws MojoExecutionException, method in class:AbstractJacocoMojo
  /external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/commands/
Merge.java 42 public int execute(final PrintWriter out, final PrintWriter err) method in class:Merge
  /external/jacoco/org.jacoco.cli.test/src/org/jacoco/cli/internal/
MainTest.java 23 execute(); method
36 execute("foo");
48 execute("--help");
60 execute("dump", "--help");
73 execute("version", "--quiet");
  /external/jacoco/org.jacoco.examples/src/org/jacoco/examples/
ClassInfo.java 51 public void execute(final String[] args) throws IOException { method in class:ClassInfo
81 new ClassInfo(System.out).execute(args);
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/
AddFunction.java 29 public Value execute(Value... args) { method in class:AddFunction
SubtractFunction.java 28 public Value execute(Value... args) { method in class:SubtractFunction
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
CrcFunction.java 36 public Value execute(Value... args) { method in class:CrcFunction
SliceFunction.java 37 public Value execute(Value... args) { method in class:SliceFunction
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
NameFunction.java 35 public Value execute(Value... args) { method in class:NameFunction
  /external/lisa/tests/lisa/
test_wlgen.py 42 def execute(self, *args, **kwargs): member in class:TestTarget
44 return super(TestTarget, self).execute(*args, **kwargs)
  /external/proguard/src/proguard/
InputReader.java 54 public void execute(ClassPool programClassPool, method in class:InputReader
Targeter.java 53 public void execute(ClassPool programClassPool) throws IOException method in class:Targeter
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAndroidHttpClient.java 51 public HttpResponse execute(HttpUriRequest httpUriRequest) throws IOException, ClientProtocolException { method in class:ShadowAndroidHttpClient
52 return httpClient.execute(httpUriRequest);
56 public HttpResponse execute(HttpUriRequest httpUriRequest, HttpContext httpContext) throws IOException, ClientProtocolException { method in class:ShadowAndroidHttpClient
57 return httpClient.execute(httpUriRequest, httpContext);
61 public HttpResponse execute(HttpHost httpHost, HttpRequest httpRequest) throws IOException, ClientProtocolException { method in class:ShadowAndroidHttpClient
62 return httpClient.execute(httpHost, httpRequest);
66 public HttpResponse execute(HttpHost httpHost, HttpRequest httpRequest, HttpContext httpContext) throws IOException, ClientProtocolException { method in class:ShadowAndroidHttpClient
67 return httpClient.execute(httpHost, httpRequest, httpContext);
71 public <T> T execute(HttpUriRequest httpUriRequest, ResponseHandler<? extends T> responseHandler) throws IOException, ClientProtocolException { method in class:ShadowAndroidHttpClient
72 return httpClient.execute(httpUriRequest, responseHandler)
76 public <T> T execute(HttpUriRequest httpUriRequest, ResponseHandler<? extends T> responseHandler, HttpContext httpContext) throws IOException, ClientProtocolException { method in class:ShadowAndroidHttpClient
81 public <T> T execute(HttpHost httpHost, HttpRequest httpRequest, ResponseHandler<? extends T> responseHandler) throws IOException, ClientProtocolException { method in class:ShadowAndroidHttpClient
86 public <T> T execute(HttpHost httpHost, HttpRequest httpRequest, ResponseHandler<? extends T> responseHandler, HttpContext httpContext) throws IOException, ClientProtocolException { method in class:ShadowAndroidHttpClient
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/
RobolectricBackgroundExecutorService.java 88 public void execute(Runnable runnable) { method in class:RobolectricBackgroundExecutorService
  /external/robolectric-shadows/shadows/httpclient/src/test/java/org/robolectric/shadows/httpclient/
FakeHttpTest.java 56 requestDirector.execute(null, new HttpGet(uri), null);
  /external/sl4a/Common/src/com/googlecode/android_scripting/
FutureActivityTaskExecutor.java 40 public void execute(FutureActivityTask<?> task) { method in class:FutureActivityTaskExecutor

Completed in 1388 milliseconds

1 2 3 4 5 6 7 891011>>