Home
last modified time | relevance | path

Searched defs:command (Results 1 – 11 of 11) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
DProcessBuilder.java180 private List<String> command; field in ProcessBuilder
198 public ProcessBuilder(List<String> command) { in ProcessBuilder()
215 public ProcessBuilder(String... command) { in ProcessBuilder()
234 public ProcessBuilder command(List<String> command) { in command() argument
252 public ProcessBuilder command(String... command) { in command() argument
267 public List<String> command() { in command() method in ProcessBuilder
DCompiler.java78 public static Object command(Object cmd) { in command() method in Compiler
DRuntime.java421 public Process exec(String command) throws IOException { in exec()
462 public Process exec(String command, String[] envp) throws IOException { in exec()
516 public Process exec(String command, String[] envp, File dir) in exec()
/libcore/ojluni/src/main/java/java/util/concurrent/
DScheduledExecutorService.java110 public ScheduledFuture<?> schedule(Runnable command, in schedule()
168 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, in scheduleAtFixedRate()
208 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, in scheduleWithFixedDelay()
DExecutor.java138 void execute(Runnable command); in execute()
DCyclicBarrier.java219 final Runnable command = barrierCommand; in dowait() local
DScheduledThreadPoolExecutor.java553 public ScheduledFuture<?> schedule(Runnable command, in schedule()
588 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, in scheduleAtFixedRate()
613 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, in scheduleWithFixedDelay()
653 public void execute(Runnable command) { in execute()
DThreadPoolExecutor.java842 final void reject(Runnable command) { in reject()
1352 public void execute(Runnable command) { in execute()
DCompletableFuture.java2652 static ScheduledFuture<?> delay(Runnable command, long delay, in delay()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DProcessBuilderTest.java52 String[] command = new String[3]; in testCommand() local
/libcore/luni/src/test/java/libcore/java/lang/
DOldRuntimeTest.java289 String command = "mkdir " + folder; in checkExec() local