Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/java/lang/
DProcessBuilder.java33 private List<String> command; field in ProcessBuilder
45 public ProcessBuilder(String... command) { in ProcessBuilder()
60 public ProcessBuilder(List<String> command) { in ProcessBuilder()
77 public List<String> command() { in command() method in ProcessBuilder
88 public ProcessBuilder command(String... command) { in command() argument
103 public ProcessBuilder command(List<String> command) { in command() method in ProcessBuilder
DCompiler.java41 public static Object command(Object cmd) { in command() method in Compiler
DProcessManager.java160 private static native int exec(String[] command, String[] environment, in exec()
178 String[] command = taintedCommand.clone(); in exec() local
/libcore/luni/src/main/java/java/util/concurrent/
DScheduledExecutorService.java81 public ScheduledFuture<?> schedule(Runnable command, in schedule()
124 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, in scheduleAtFixedRate()
151 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, in scheduleWithFixedDelay()
DExecutor.java111 void execute(Runnable command); in execute()
DCyclicBarrier.java184 final Runnable command = barrierCommand; in dowait() local
DScheduledThreadPoolExecutor.java497 public ScheduledFuture<?> schedule(Runnable command, in schedule()
530 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, in scheduleAtFixedRate()
554 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, in scheduleWithFixedDelay()
593 public void execute(Runnable command) { in execute()
DThreadPoolExecutor.java785 final void reject(Runnable command) { in reject()
1270 public void execute(Runnable command) { in execute()
/libcore/dalvik/src/main/java/dalvik/system/
DZygote.java183 public static void execShell(String command) { in execShell()
201 public static void appendQuotedShellArgs(StringBuilder command, String[] args) { in appendQuotedShellArgs()
/libcore/luni/src/main/java/java/net/
DSocks4Message.java72 public void setCommandOrResult(int command) { in setCommandOrResult()
DPlainSocketImpl.java426 private void socksSendRequest(int command, InetAddress address, int port) throws IOException { in socksSendRequest()
/libcore/luni/src/test/java/libcore/java/lang/
DOldRuntimeTest.java308 String command = "mkdir " + folder; in checkExec() local
/libcore/luni/src/main/java/libcore/net/url/
DFtpURLConnection.java499 private void write(String command) throws IOException { in write()