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

1 2 3 4 5 6 7 8 91011>>

  /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/deqp/framework/delibs/deutil/
deCommandLine.c 39 deCommandLine* deCommandLine_parse (const char* commandLine)
56 DE_ASSERT(commandLine);
59 buf = (char*)deCalloc((int)strlen(commandLine)+1);
71 while (commandLine[pos] != 0)
73 char c = commandLine[pos++];
78 c = commandLine[pos++];
112 DE_ASSERT(commandLine[pos] == 0);
deProcess.h 37 deBool deProcess_start (deProcess* process, const char* commandLine, const char* workingDirectory);
  /external/chromium_org/third_party/skia/platform_tools/nacl/src/
nacl_interface.cpp 30 void SkStringToProgramArgs(const SkString commandLine, int* argc, char*** argv) {
32 const char* commandChars = commandLine.c_str();
67 void RunProgram(const SkString& commandLine) {
70 SkStringToProgramArgs(commandLine, &argc, &argv);
  /external/skia/platform_tools/nacl/src/
nacl_interface.cpp 30 void SkStringToProgramArgs(const SkString commandLine, int* argc, char*** argv) {
32 const char* commandChars = commandLine.c_str();
67 void RunProgram(const SkString& commandLine) {
70 SkStringToProgramArgs(commandLine, &argc, &argv);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ChildProcessConnection.java 71 * @param commandLine (optional) command line for the child process. If omitted, then
74 void start(String[] commandLine);
78 * @param commandLine (optional) will be ignored if the command line was already sent in start()
85 String[] commandLine,
ChildProcessConnectionImpl.java 80 ConnectionParams(String[] commandLine, FileDescriptorInfo[] filesToBeMapped,
82 mCommandLine = commandLine;
115 boolean bind(String[] commandLine) {
119 if (commandLine != null) {
120 intent.putExtra(EXTRA_COMMAND_LINE, commandLine);
229 public void start(String[] commandLine) {
236 if (!mInitialBinding.bind(commandLine)) {
250 String[] commandLine,
266 commandLine, filesToBeMapped, processCallback, sharedRelros);
ChildProcessLauncher.java 199 String[] commandLine, boolean inSandbox) {
204 connection.start(commandLine);
306 private static String getSwitchValue(final String[] commandLine, String switchKey) {
307 if (commandLine == null || switchKey == null) {
312 for (String command : commandLine) {
327 * @param commandLine The child process command line argv.
337 final String[] commandLine,
354 String processType = getSwitchValue(commandLine, SWITCH_PROCESS_TYPE);
371 allocatedConnection = allocateBoundConnection(context, commandLine, inSandbox);
383 triggerConnectionSetup(allocatedConnection, commandLine, childProcessId, filesToBeMapped
    [all...]
  /external/deqp/framework/delibs/decpp/
deProcess.cpp 43 void Process::start (const char* commandLine, const char* workingDirectory)
45 if (!deProcess_start(m_process, commandLine, workingDirectory))
deProcess.hpp 47 void start (const char* commandLine, const char* workingDirectory);
  /external/chromium_org/base/android/java/src/org/chromium/base/
CommandLine.java 27 public abstract class CommandLine {
88 private static final AtomicReference<CommandLine> sCommandLine =
89 new AtomicReference<CommandLine>();
98 // Equivalent to CommandLine::ForCurrentProcess in C++.
99 public static CommandLine getInstance() {
100 CommandLine commandLine = sCommandLine.get();
101 assert commandLine != null;
102 return commandLine;
178 private static final String TAG = "CommandLine";
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DumpFields.java 61 CommandLine commandLine;
64 commandLine = parser.parse(options, args);
70 String[] remainingArgs = commandLine.getArgs();
72 Option[] parsedOptions = commandLine.getOptions();
89 apiLevel = Integer.parseInt(commandLine.getOptionValue("a"));
DumpVtables.java 59 CommandLine commandLine;
62 commandLine = parser.parse(options, args);
68 String[] remainingArgs = commandLine.getArgs();
70 Option[] parsedOptions = commandLine.getOptions();
87 apiLevel = Integer.parseInt(commandLine.getOptionValue("a"));
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
main.java 93 CommandLine commandLine;
96 commandLine = parser.parse(options, args);
109 String[] remainingArgs = commandLine.getArgs();
110 Option[] clOptions = commandLine.getOptions();
130 options.outputDirectory = commandLine.getOptionValue("o");
151 String[] values = commandLine.getOptionValues('r');
185 String bcp = commandLine.getOptionValue("c");
200 options.apiLevel = Integer.parseInt(commandLine.getOptionValue("a"));
203 options.jobs = Integer.parseInt(commandLine.getOptionValue("j"))
    [all...]
  /external/deqp/android/scripts/
common.py 58 def execute (commandLine):
59 args = shlex.split(commandLine)
62 raise Exception("Failed to execute '%s', got %d" % (commandLine, retcode))
  /external/chromium_org/components/cronet/android/sample/src/org/chromium/cronet_sample_apk/
CronetSampleActivity.java 195 String[] commandLine = extras.getStringArray(COMMAND_LINE_ARGS_KEY);
196 if (commandLine != null) {
197 for (int i = 0; i < commandLine.length; ++i) {
199 "Cronet commandLine[" + i + "]=" + commandLine[i]);
200 if (commandLine[i].equals(key)) {
201 return commandLine[++i];
  /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 100 CommandLine commandLine;
103 commandLine = parser.parse(options, args);
118 String[] remainingArgs = commandLine.getArgs();
120 Option[] options = commandLine.getOptions();
140 outputDexFile = commandLine.getOptionValue("o");
146 apiLevel = Integer.parseInt(commandLine.getOptionValue("a"));
149 jobs = Integer.parseInt(commandLine.getOptionValue("j"));
  /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());
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/compiler-runner/src/org/chromium/devtools/compiler/
Runner.java 225 return descriptor.commandLine.split(" +");
237 private final String commandLine;
239 public CompilerInstanceDescriptor(String moduleName, String commandLine) {
241 this.commandLine = commandLine;
  /developers/build/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/androidtv/leanback/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/androidtv/visual-game-controller/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActionBarCompat-Basic/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActionBarCompat-ListPopupMenu/gradle/wrapper/
gradle-wrapper.jar 

Completed in 459 milliseconds

1 2 3 4 5 6 7 8 91011>>