Searched defs:exec (Results 1 - 6 of 6) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
H A DRecursiveAction.java160 protected final boolean exec() { method in class:RecursiveAction
H A DRecursiveTask.java64 protected final boolean exec() { method in class:RecursiveTask
H A DForkJoinTask.java131 * implement {@code protected} methods {@link #exec}, {@link
298 * exec and records status if completed, but doesn't wait for
305 completed = exec();
326 completed = exec();
348 completed = exec();
941 completed = exec();
1151 protected abstract boolean exec(); method in class:ForkJoinTask
1235 public boolean exec() { method in class:ForkJoinTask.AdaptedRunnable
1257 public boolean exec() { method in class:ForkJoinTask.AdaptedCallable
/libcore/luni/src/test/java/libcore/sqlite/
H A DQueryTimeoutTest.java49 exec("drop table if exists t_orig;");
50 exec("drop table if exists t_copy;");
51 exec("create table t_orig (a int)");
52 exec("create table t_copy (a int)");
55 exec("insert into t_orig values (" + i + ");");
81 private void exec(String queryString) throws Exception { method in class:QueryTimeoutTest
/libcore/luni/src/main/java/java/lang/
H A DProcessManager.java138 // This wait will return because of the notifyAll call in exec.
160 private static native int exec(String[] command, String[] environment, method in class:ProcessManager
167 public Process exec(String[] taintedCommand, String[] taintedEnvironment, File workingDirectory, method in class:ProcessManager
181 // Check we're not passing null Strings to the native exec.
209 pid = exec(command, environment, workingPath, in, out, err, redirectErrorStream);
211 IOException wrapper = new IOException("Error running exec()."
H A DRuntime.java112 * this method is equivalent to calling {@code exec(progArray, null, null)}.
122 public Process exec(String[] progArray) throws java.io.IOException { method in class:Runtime
123 return exec(progArray, null, null);
130 * {@code exec(progArray, envp, null)}.
143 public Process exec(String[] progArray, String[] envp) throws java.io.IOException { method in class:Runtime
144 return exec(progArray, envp, null);
166 public Process exec(String[] progArray, String[] envp, File directory) throws IOException { method in class:Runtime
168 return ProcessManager.getInstance().exec(progArray, envp, directory, false);
174 * equivalent to calling {@code exec(prog, null, null)}.
183 public Process exec(Strin method in class:Runtime
202 public Process exec(String prog, String[] envp) throws java.io.IOException { method in class:Runtime
224 public Process exec(String prog, String[] envp, File directory) throws java.io.IOException { method in class:Runtime
[all...]

Completed in 117 milliseconds