Searched defs:command (Results 1 - 25 of 27) sorted by relevance

12

/dalvik/dx/src/com/android/dx/command/
H A DUsageException.java17 package com.android.dx.command;
20 * Simple exception class used to communicate that the command-line tool
H A DDxConsole.java17 package com.android.dx.command;
H A DMain.java17 package com.android.dx.command;
89 com.android.dx.command.dexer.Main.main(without(args, i));
92 com.android.dx.command.dump.Main.main(without(args, i));
95 com.android.dx.command.annotool.Main.main(
132 System.err.println("error: no command specified");
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DExecutor.java102 * Executes the given command at some time in the future. The command
106 * @param command the runnable task
109 * @throws NullPointerException if command is null
111 void execute(Runnable command); argument
H A DScheduledExecutorService.java74 * @param command the task to execute
82 * @throws NullPointerException if command is null
84 public ScheduledFuture<?> schedule(Runnable command, argument
115 * @param command the task to execute
124 * @throws NullPointerException if command is null
127 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, argument
141 * @param command the task to execute
151 * @throws NullPointerException if command is null
154 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, argument
H A DExecutors.java599 public void execute(Runnable command) { e.execute(command); } argument
659 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { argument
660 return e.schedule(command, delay, unit);
665 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) { argument
666 return e.scheduleAtFixedRate(command, initialDelay, period, unit);
668 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) { argument
669 return e.scheduleWithFixedDelay(command, initialDelay, delay, unit);
H A DScheduledThreadPoolExecutor.java405 public ScheduledFuture<?> schedule(Runnable command, argument
408 if (command == null || unit == null)
412 = new ScheduledFutureTask<Void>(command, null, triggerTime);
438 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, argument
442 if (command == null || unit == null)
449 new ScheduledFutureTask<Void>(command,
463 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, argument
467 if (command == null || unit == null)
473 new ScheduledFutureTask<Void>(command,
483 * Executes {@code command} wit
502 execute(Runnable command) argument
[all...]
/dalvik/libcore/luni/src/main/java/java/lang/
H A DProcessBuilder.java32 private List<String> command; field in class:ProcessBuilder
44 * @param command
47 public ProcessBuilder(String... command) { argument
48 this(toList(command));
57 * @param command
60 * if {@code command} is {@code null}.
62 public ProcessBuilder(List<String> command) { argument
64 if (command == null) {
67 this.command = command;
80 public List<String> command() { method in class:ProcessBuilder
91 command(String... command) argument
106 command(List<String> command) argument
[all...]
/dalvik/dx/src/com/android/dx/command/dump/
H A DClassDumper.java17 package com.android.dx.command.dump;
H A DMain.java17 package com.android.dx.command.dump;
H A DSsaDumper.java17 package com.android.dx.command.dump;
H A DArgs.java17 package com.android.dx.command.dump;
20 * contains command line parsedArgs values
H A DDotDumper.java17 package com.android.dx.command.dump;
H A DBlockDumper.java17 package com.android.dx.command.dump;
H A DBaseDumper.java17 package com.android.dx.command.dump;
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DCompiler.java39 * Executes an operation according to the specified command object. This
44 * the command object for the JIT compiler.
45 * @return the result of executing command or {@code null}.
48 public static Object command(Object cmd) { method in class:Compiler
H A DProcessManager.java172 static native int exec(String[] command, String[] environment, argument
190 String[] command = taintedCommand.clone();
194 securityManager.checkExec(command[0]);
197 for (String arg : command) {
224 pid = exec(command, environment, workingPath, in, out, err, redirectErrorStream);
227 + " Command: " + Arrays.toString(command)
/dalvik/dx/src/com/android/dx/command/annotool/
H A DAnnotationLister.java17 package com.android.dx.command.annotool;
H A DMain.java17 package com.android.dx.command.annotool;
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/
H A DShortMessage.java85 * command should be divisible by 16 without rest
199 public void setMessage(int command, int channel, int data1, int data2) argument
203 * value of variable command is more or equals 128 and less or equals
206 if ((command < 128) || (command > 239)) {
208 * when this exception throw out, the value of variable command
211 // sound.05=command out of range: {0}
212 throw new InvalidMidiDataException(Messages.getString("sound.05", command)); //$NON-NLS-1$
223 * but when command more or equals 192 and less or equals 223 the second
227 if ((getDataLength(command) >
[all...]
/dalvik/dx/tests/098-dex-jsr-ret-throw/
H A DViewDebug$ViewServer.class ... io.IOException e public void run () String[] params String command java.io.BufferedReader in java.io. ...
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/ftp/
H A DFtpURLConnection.java234 /* Cannot set REUSEADDR so we need to send a PORT command */
435 * Issue the STOR command to the server with the file as the parameter
504 private void write(String command) throws IOException { argument
505 ctrlOutput.write(command.getBytes("ISO8859_1")); //$NON-NLS-1$
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/net/
H A DSocks4Message.java64 * Get the request's command or result.
71 * Set the request's command or result.
73 public void setCommandOrResult(int command) { argument
74 buffer[INDEX_COMMAND] = (byte) command;
H A DPlainSocketImpl.java498 private void socksSendRequest(int command, InetAddress address, int port) argument
501 request.setCommandOrResult(command);
/dalvik/dx/src/com/android/dx/command/dexer/
H A DMain.java17 package com.android.dx.command.dexer;
22 import com.android.dx.command.DxConsole;
23 import com.android.dx.command.UsageException;
93 /** {@code non-null;} parsed command-line arguments */
114 * @param argArray the command line arguments
810 * Parses the given command-line arguments.

Completed in 4496 milliseconds

12