Home
last modified time | relevance | path

Searched defs:exec (Results 1 – 9 of 9) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
DRuntime.java421 public Process exec(String command) throws IOException { in exec() method in Runtime
462 public Process exec(String command, String[] envp) throws IOException { in exec() method in Runtime
516 public Process exec(String command, String[] envp, File dir) in exec() method in Runtime
559 public Process exec(String cmdarray[]) throws IOException { in exec() method in Runtime
602 public Process exec(String[] cmdarray, String[] envp) throws IOException { in exec() method in Runtime
690 public Process exec(String[] cmdarray, String[] envp, File dir) in exec() method in Runtime
/libcore/ojluni/src/main/java/java/util/concurrent/
DRecursiveAction.java188 protected final boolean exec() { in exec() method in RecursiveAction
DRecursiveTask.java93 protected final boolean exec() { in exec() method in RecursiveTask
DForkJoinTask.java1234 protected abstract boolean exec(); in exec() method in ForkJoinTask
1379 public final boolean exec() { runnable.run(); return true; } in exec() method in ForkJoinTask.AdaptedRunnable
1396 public final boolean exec() { runnable.run(); return true; } in exec() method in ForkJoinTask.AdaptedRunnableAction
1412 public final boolean exec() { runnable.run(); return true; } in exec() method in ForkJoinTask.RunnableExecuteAction
1432 public final boolean exec() { in exec() method in ForkJoinTask.AdaptedCallable
DCountedCompleter.java731 protected final boolean exec() { in exec() method in CountedCompleter
DCompletableFuture.java451 public final boolean exec() { tryFire(ASYNC); return false; } in exec() method in CompletableFuture.Completion
1617 public final boolean exec() { run(); return true; } in exec() method in CompletableFuture.AsyncSupply
1653 public final boolean exec() { run(); return true; } in exec() method in CompletableFuture.AsyncRun
DForkJoinPool.java735 public final boolean exec() { return true; } in exec() method in ForkJoinPool.EmptyTask
/libcore/jsr166-tests/src/test/java/jsr166/
DForkJoinPoolTest.java130 protected final boolean exec() { throw new Error(); } in exec() method in ForkJoinPoolTest.FailingTask
DCompletableFutureTest.java3205 ThreadExecutor exec = new ThreadExecutor(); in testNPE() local