Searched refs:command (Results 1 - 11 of 11) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/executors/
H A DDevice.java109 pb.command("adb", "devices");
160 * Get the command prefix for this device if we want to use adb shell.
184 public ExecutionResult executeCommand(String command, boolean captureOutput) { argument
186 return executeCommand(command, captureOutput, null, null);
189 public ExecutionResult executeCommand(String command, boolean captureOutput, argument
194 Log.info("Executing: " + command);
197 ProcessBuilder processBuilder = new ProcessBuilder(splitCommand(command));
241 * Splits command respecting single quotes.
243 private List<String> splitCommand(String command) { argument
245 Matcher m = Pattern.compile("(\'[^\']+\'| *[^ ]+ *)").matcher(command);
251 getExecutionPrefixWithAdb(String command) argument
[all...]
H A DExecutor.java76 protected ExecutionResult executeCommandWithTimeout(String command, boolean captureOutput) { argument
78 return device.executeCommand(timeoutString + device.getExecutionShellPrefix() + command,
180 String command = "";
183 command = "PATH=" + androidRoot + "/bin ";
184 command += "ANDROID_ROOT=" + androidRoot + " ";
185 command += "LD_LIBRARY_PATH="+ androidRoot + "/lib:" + androidRoot + "/lib64 ";
187 command += constructCommand(programName);
188 executionResult = executeCommandWithTimeout(command, true);
/art/runtime/
H A Dutils_test.cc310 std::vector<std::string> command; local
313 command.push_back(android_root + "/bin/id");
315 command.push_back("/usr/bin/id");
320 EXPECT_TRUE(Exec(command, &error_msg));
329 std::vector<std::string> command; local
330 command.push_back("bogus");
334 EXPECT_FALSE(Exec(command, &error_msg));
345 std::vector<std::string> command; local
348 command.push_back(android_root + "/bin/printenv");
350 command
370 std::vector<std::string> command; local
[all...]
/art/test/testrunner/
H A Denv.py52 # The command is taken from build/envsetup.sh to fetch build variables.
53 command = ("CALLED_FROM_SETUP=true " # Enable the 'dump-many-vars' make target.
58 config = subprocess.Popen(command,
H A Dtestrunner.py295 The method generates command and thread worker to run the tests. Depending on
459 command = run_test_sh + ' ' + options_test + ' ' + test
462 worker = threading.Thread(target=run_test, args=(command, test, variant_set, test_name))
470 def run_test(command, test, test_variant, test_name):
483 command: The command to be used to invoke the script
494 proc = subprocess.Popen(command.split(), stderr=subprocess.STDOUT, stdout=subprocess.PIPE, universal_newlines=True)
506 command, script_output))
515 timeout, command))
519 ('%s\n%s\n\n') % (command, st
[all...]
/art/dexoptanalyzer/
H A Ddexoptanalyzer.cc52 std::vector<std::string> command; local
54 command.push_back(original_argv[i]);
56 return android::base::Join(command, ' ');
101 UsageError(" To make it easier to integrate with the internal tools this command will make");
131 // Skip over the command name.
/art/dex2oat/
H A Ddex2oat.cc102 std::vector<std::string> command; local
104 command.push_back(original_argv[i]);
106 return android::base::Join(command, ' ');
113 std::vector<std::string> command; local
164 command.push_back(original_argv[i]);
168 command.push_back("--compiler-filter=" +
173 if (command.size() <= 1U) {
177 return android::base::Join(command, ' ');
870 << *runtime_features <<") for the command line:\n"
1099 // Parse the arguments from the command lin
[all...]
/art/patchoat/
H A Dpatchoat.cc685 std::vector<std::string> command; local
687 command.push_back(orig_argv[i]);
689 return android::base::Join(command, ' ');
780 // Skip over the command name.
/art/profman/
H A Dprofman.cc53 std::vector<std::string> command; local
55 command.push_back(original_argv[i]);
57 return android::base::Join(command, ' ');
178 // Skip over the command name.
799 // Validate parameters for this command.
855 // Validate parameters for this command.
/art/runtime/jdwp/
H A Djdwp_handler.cc1451 /* VirtualMachine command set (1) */
1474 /* ReferenceType command set (2) */
1494 /* ClassType command set (3) */
1500 /* ArrayType command set (4) */
1503 /* InterfaceType command set (5) */
1506 /* Method command set (6) */
1513 /* Field command set (8) */
1515 /* ObjectReference command set (9) */
1527 /* StringReference command set (10) */
1530 /* ThreadReference command se
1598 IsInvokeCommand(uint8_t command_set, uint8_t command) argument
[all...]
/art/tools/dmtracedump/
H A Dtracedump.cc1479 char command[1024]; local
1480 snprintf(command, 1024, "dot -Tpng -o \"%s\" \"%s\"", gOptions.graphFileName, path);
1482 system(command);

Completed in 211 milliseconds