HomeSort by relevance Sort by last modified time
    Searched refs:commandLine (Results 1 - 25 of 62) sorted by null

1 2 3

  /cts/tools/vm-tests-tf/src/util/build/
JavacBuildStep.java 57 String[] commandLine = new String[sourceFiles.size()+args];
58 commandLine[0] = "-classpath";
59 commandLine[1] = classPath;
60 commandLine[2] = "-d";
61 commandLine[3] = destPath;
66 System.arraycopy(files, 0, commandLine, args, files.length);
69 return Main.compile(commandLine, new PrintWriter(System.err)) == 0;
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ChildProcessConnection.java 27 import org.chromium.content.common.CommandLine;
129 ConnectionParams(String[] commandLine, FileDescriptorInfo[] filesToBeMapped,
131 mCommandLine = commandLine;
157 boolean bind(String[] commandLine) {
160 if (commandLine != null) {
161 intent.putExtra(EXTRA_COMMAND_LINE, commandLine);
273 * @param commandLine (Optional) Command line for the child process. If omitted, then
276 void start(String[] commandLine) {
281 if (!mInitialBinding.bind(commandLine)) {
293 * @param commandLine (Optional) will be ignored if the command line was already sent in bind(
    [all...]
ChildProcessLauncher.java 155 String[] commandLine, boolean inSandbox) {
158 connection.start(commandLine);
217 private static String getSwitchValue(final String[] commandLine, String switchKey) {
218 if (commandLine == null || switchKey == null) {
223 for (String command : commandLine) {
238 * @param commandLine The child process command line argv.
248 final String[] commandLine,
263 String processType = getSwitchValue(commandLine, SWITCH_PROCESS_TYPE);
280 allocatedConnection = allocateBoundConnection(context, commandLine, inSandbox);
326 connection.setupConnection(commandLine, filesToBeMapped, createCallback(callbackType)
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/common/
CommandLine.java 22 * Java mirror of Chrome command-line utilities (e.g. class CommandLine from base/command_line.h).
26 public abstract class CommandLine {
139 private static final AtomicReference<CommandLine> sCommandLine =
140 new AtomicReference<CommandLine>();
149 // Equivalent to CommandLine::ForCurrentProcess in C++.
150 public static CommandLine getInstance() {
151 CommandLine commandLine = sCommandLine.get();
152 assert commandLine != null;
153 return commandLine;
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
main.java 92 CommandLine commandLine;
95 commandLine = parser.parse(options, args);
132 String[] remainingArgs = commandLine.getArgs();
134 Option[] options = commandLine.getOptions();
154 outputDirectory = commandLine.getOptionValue("o");
175 String[] values = commandLine.getOptionValues('r');
207 String bcp = commandLine.getOptionValue("c");
221 apiLevel = Integer.parseInt(commandLine.getOptionValue("a"));
231 dumpFileName = commandLine.getOptionValue("D", inputDexFileName + ".dump")
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/main/macos/
SDL_main.c 367 char *commandLine;
569 commandLine = (char*) malloc (appNameText[0] + prefs.command_line[0] + 2);
570 if ( commandLine == NULL ) {
581 SDL_memcpy(commandLine, appNameText + 1, appNameText[0]);
582 commandLine[appNameText[0]] = ' ';
583 SDL_memcpy(commandLine + appNameText[0] + 1, prefs.command_line + 1, prefs.command_line[0]);
584 commandLine[ appNameText[0] + 1 + prefs.command_line[0] ] = '\0';
587 nargs = ParseCommandLine (commandLine, NULL);
592 ParseCommandLine (commandLine, args);
597 free (commandLine);
    [all...]
  /external/smali/smali/src/main/java/org/jf/smali/
main.java 92 CommandLine commandLine;
95 commandLine = parser.parse(options, args);
114 String[] remainingArgs = commandLine.getArgs();
116 Option[] options = commandLine.getOptions();
136 outputDexFile = commandLine.getOptionValue("o");
142 apiLevel = Integer.parseInt(commandLine.getOptionValue("a"));
146 dumpFileName = commandLine.getOptionValue("D", outputDexFile + ".dump");
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Exec.java 218 StringBuilder commandLine;
220 commandLine = new StringBuilder(args.get(0));
222 commandLine.append(" ");
223 commandLine.append(args.get(i));
225 System.out.println("Exec: " + commandLine.toString());
  /developers/build/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/templates/create/gradle/wrapper/
gradle-wrapper.jar 
  /developers/samples/android/background/alarms/RepeatingAlarm/gradle/wrapper/
gradle-wrapper.jar 
  /developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/gradle/wrapper/
gradle-wrapper.jar 
  /developers/samples/android/connectivity/network/BasicNetworking/gradle/wrapper/
gradle-wrapper.jar 
  /developers/samples/android/connectivity/network/NetworkConnect/gradle/wrapper/
gradle-wrapper.jar 
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/gradle/wrapper/
gradle-wrapper.jar 
  /developers/samples/android/content/contacts/BasicContactables/gradle/wrapper/
gradle-wrapper.jar 
  /developers/samples/android/content/documentsUi/StorageClient/gradle/wrapper/
gradle-wrapper.jar 
  /developers/samples/android/content/documentsUi/StorageProvider/gradle/wrapper/
gradle-wrapper.jar 
  /developers/samples/android/content/multiuser/AppRestrictions/gradle/wrapper/
gradle-wrapper.jar 
  /developers/samples/android/input/gestures/BasicGestureDetect/gradle/wrapper/
gradle-wrapper.jar 
  /developers/samples/android/input/multitouch/BasicMultitouch/gradle/wrapper/
gradle-wrapper.jar 
  /developers/samples/android/media/BasicMediaDecoder/gradle/wrapper/
gradle-wrapper.jar 
  /developers/samples/android/media/BasicMediaRouter/gradle/wrapper/
gradle-wrapper.jar 
  /developers/samples/android/media/MediaRecorder/gradle/wrapper/
gradle-wrapper.jar 
  /developers/samples/android/security/keystore/BasicAndroidKeyStore/gradle/wrapper/
gradle-wrapper.jar 

Completed in 2226 milliseconds

1 2 3