Home
last modified time | relevance | path

Searched defs:exec (Results 1 – 8 of 8) 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.java420 public Process exec(String command) throws IOException { in exec() method in Runtime
461 public Process exec(String command, String[] envp) throws IOException { in exec() method in Runtime
515 public Process exec(String command, String[] envp, File dir) in exec() method in Runtime
558 public Process exec(String cmdarray[]) throws IOException { in exec() method in Runtime
601 public Process exec(String[] cmdarray, String[] envp) throws IOException { in exec() method in Runtime
689 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
/libcore/ojluni/src/test/java/util/concurrent/tck/
DForkJoinPoolTest.java148 protected final boolean exec() { throw new Error(); } in exec() method in ForkJoinPoolTest.FailingTask
/libcore/jsr166-tests/src/test/java/jsr166/
DCompletableFutureTest.java3205 ThreadExecutor exec = new ThreadExecutor(); in testNPE() local