Home
last modified time | relevance | path

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

/libcore/ojluni/annotations/hiddenapi/java/lang/
DRuntime.java66 public java.lang.Process exec(java.lang.String command) throws java.io.IOException { in exec() method in Runtime
70 public java.lang.Process exec(java.lang.String command, java.lang.String[] envp) in exec() method in Runtime
75 public java.lang.Process exec( in exec() method in Runtime
81 public java.lang.Process exec(java.lang.String[] cmdarray) throws java.io.IOException { in exec() method in Runtime
85 public java.lang.Process exec(java.lang.String[] cmdarray, java.lang.String[] envp) in exec() method in Runtime
90 public java.lang.Process exec( in exec() method in Runtime
/libcore/ojluni/src/main/java/java/lang/
DRuntime.java425 public Process exec(String command) throws IOException { in exec() method in Runtime
466 public Process exec(String command, String[] envp) throws IOException { in exec() method in Runtime
520 public Process exec(String command, String[] envp, File dir) in exec() method in Runtime
563 public Process exec(String cmdarray[]) throws IOException { in exec() method in Runtime
606 public Process exec(String[] cmdarray, String[] envp) throws IOException { in exec() method in Runtime
694 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
1378 public final boolean exec() { runnable.run(); return true; } in exec() method in ForkJoinTask.AdaptedRunnable
1395 public final boolean exec() { runnable.run(); return true; } in exec() method in ForkJoinTask.AdaptedRunnableAction
1411 public final boolean exec() { runnable.run(); return true; } in exec() method in ForkJoinTask.RunnableExecuteAction
1431 public final boolean exec() { in exec() method in ForkJoinTask.AdaptedCallable
DCountedCompleter.java731 protected final boolean exec() { in exec() method in CountedCompleter
DCompletableFuture.java453 public final boolean exec() { tryFire(ASYNC); return false; } in exec() method in CompletableFuture.Completion
1619 public final boolean exec() { run(); return true; } in exec() method in CompletableFuture.AsyncSupply
1655 public final boolean exec() { run(); return true; } in exec() method in CompletableFuture.AsyncRun
DForkJoinPool.java736 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