Searched defs:command (Results 1 – 13 of 13) sorted by relevance
/libcore/ojluni/src/main/java/java/lang/ |
D | ProcessBuilder.java | 115 private List<String> command; field in ProcessBuilder 133 public ProcessBuilder(List<String> command) { in ProcessBuilder() 150 public ProcessBuilder(String... command) { in ProcessBuilder() 169 public ProcessBuilder command(List<String> command) { in command() method in ProcessBuilder 187 public ProcessBuilder command(String... command) { in command() argument 202 public List<String> command() { in command() method in ProcessBuilder
|
D | Compiler.java | 78 public static Object command(Object cmd) { in command() method in Compiler
|
D | Runtime.java | 420 public Process exec(String command) throws IOException { in exec() 461 public Process exec(String command, String[] envp) throws IOException { in exec() 515 public Process exec(String command, String[] envp, File dir) in exec()
|
/libcore/luni/src/main/java/java/util/concurrent/ |
D | ScheduledExecutorService.java | 81 public ScheduledFuture<?> schedule(Runnable command, in schedule() 139 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, in scheduleAtFixedRate() 179 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, in scheduleWithFixedDelay()
|
D | Executor.java | 109 void execute(Runnable command); in execute()
|
D | CyclicBarrier.java | 190 final Runnable command = barrierCommand; in dowait() local
|
D | ScheduledThreadPoolExecutor.java | 524 public ScheduledFuture<?> schedule(Runnable command, in schedule() 559 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, in scheduleAtFixedRate() 584 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, in scheduleWithFixedDelay() 624 public void execute(Runnable command) { in execute()
|
D | ThreadPoolExecutor.java | 813 final void reject(Runnable command) { in reject() 1323 public void execute(Runnable command) { in execute()
|
D | CompletableFuture.java | 2623 static ScheduledFuture<?> delay(Runnable command, long delay, in delay()
|
/libcore/ojluni/src/main/java/sun/net/www/ |
D | MimeEntry.java | 36 private String command; field in MimeEntry 82 MimeEntry(String typeName, int action, String command, in MimeEntry() 94 MimeEntry(String typeName, int action, String command, in MimeEntry() 119 public synchronized void setAction(int action, String command) { in setAction() 132 public synchronized void setCommand(String command) { in setCommand() 295 String command = getLaunchString(); in toProperty() local
|
D | MimeLauncher.java | 168 String command; in findExecutablePath() local
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
D | ProcessBuilderTest.java | 52 String[] command = new String[3]; in testCommand() local
|
/libcore/luni/src/test/java/libcore/java/lang/ |
D | OldRuntimeTest.java | 289 String command = "mkdir " + folder; in checkExec() local
|