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

/art/tools/dexfuzz/src/dexfuzz/executors/
H A DDevice.java99 pb.command("adb", "devices");
146 * Get the command prefix for this device if we want to use adb shell.
170 public ExecutionResult executeCommand(String command, boolean captureOutput) { argument
172 return executeCommand(command, captureOutput, null, null);
175 public ExecutionResult executeCommand(String command, boolean captureOutput, argument
180 Log.info("Executing: " + command);
183 ProcessBuilder processBuilder = new ProcessBuilder(command.split(" "));
226 private String getExecutionPrefixWithAdb(String command) { argument
228 return String.format("adb -s %s %s ", deviceName, command);
230 return String.format("adb %s ", command);
[all...]
H A DExecutor.java74 protected ExecutionResult executeCommandWithTimeout(String command, boolean captureOutput) { argument
76 return device.executeCommand(timeoutString + device.getExecutionShellPrefix() + command,
/art/runtime/
H A Dutils_test.cc355 std::vector<std::string> command; local
358 command.push_back(android_root + "/bin/id");
360 command.push_back("/usr/bin/id");
365 EXPECT_TRUE(Exec(command, &error_msg));
374 std::vector<std::string> command; local
375 command.push_back("bogus");
379 EXPECT_FALSE(Exec(command, &error_msg));
390 std::vector<std::string> command; local
393 command.push_back(android_root + "/bin/printenv");
395 command
415 std::vector<std::string> command; local
[all...]
/art/dexdump/
H A DAndroid.mk26 ## Build the device command line tool dexdump.
41 ## Build the host command line tool dexdump.
/art/dexlist/
H A DAndroid.mk24 ## Build the device command line tool dexlist.
41 ## Build the host command line tool dexlist.
/art/profman/
H A Dprofman.cc46 std::vector<std::string> command; local
48 command.push_back(original_argv[i]);
50 return Join(command, ' ');
132 // Skip over the command name.
/art/runtime/jdwp/
H A Djdwp_handler.cc761 // Default implementation for IDEs relying on this command.
1444 /* VirtualMachine command set (1) */
1467 /* ReferenceType command set (2) */
1487 /* ClassType command set (3) */
1493 /* ArrayType command set (4) */
1496 /* InterfaceType command set (5) */
1499 /* Method command set (6) */
1506 /* Field command set (8) */
1508 /* ObjectReference command set (9) */
1520 /* StringReference command se
1591 IsInvokeCommand(uint8_t command_set, uint8_t command) argument
[all...]
/art/dex2oat/
H A Ddex2oat.cc92 std::vector<std::string> command; local
94 command.push_back(original_argv[i]);
96 return Join(command, ' ');
103 std::vector<std::string> command; local
151 command.push_back(original_argv[i]);
155 if (command.size() <= 1U) {
159 return Join(command, ' ');
826 << *runtime_features <<") for the command line:\n"
1038 // Parse the arguments from the command line. In case of an unrecognized option or impossible
2656 // Otherwise, print a stripped command lin
[all...]
/art/patchoat/
H A Dpatchoat.cc886 std::vector<std::string> command; local
888 command.push_back(orig_argv[i]);
890 return Join(command, ' ');
1240 // Skip over the command name.
/art/tools/dmtracedump/
H A Dtracedump.cc1475 char command[1024]; local
1476 snprintf(command, 1024, "dot -Tpng -o \"%s\" \"%s\"", gOptions.graphFileName, path);
1478 system(command);
/art/test/
H A DAndroid.run-test.mk239 # requires the zip command.

Completed in 310 milliseconds