Searched refs:command (Results 1 - 6 of 6) 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.cc353 std::vector<std::string> command; local
356 command.push_back(android_root + "/bin/id");
358 command.push_back("/usr/bin/id");
363 EXPECT_TRUE(Exec(command, &error_msg));
372 std::vector<std::string> command; local
373 command.push_back("bogus");
377 EXPECT_FALSE(Exec(command, &error_msg));
/art/dex2oat/
H A Ddex2oat.cc85 std::vector<std::string> command; local
87 command.push_back(original_argv[i]);
89 return Join(command, ' ');
96 std::vector<std::string> command; local
138 command.push_back(original_argv[i]);
142 if (command.size() <= 1U) {
146 return Join(command, ' ');
309 UsageError(" stripped using standard command line tools such as strip or objcopy.");
542 // Parse the arguments from the command line. In case of an unrecognized option or impossible
971 << *runtime_features <<") for the command lin
[all...]
/art/patchoat/
H A Dpatchoat.cc788 std::vector<std::string> command; local
790 command.push_back(orig_argv[i]);
792 return Join(command, ' ');
944 // Skip over the command name.
/art/runtime/jdwp/
H A Djdwp_handler.cc1418 /* VirtualMachine command set (1) */
1441 /* ReferenceType command set (2) */
1461 /* ClassType command set (3) */
1467 /* ArrayType command set (4) */
1470 /* InterfaceType command set (5) */
1472 /* Method command set (6) */
1479 /* Field command set (8) */
1481 /* ObjectReference command set (9) */
1493 /* StringReference command set (10) */
1496 /* ThreadReference command se
1564 IsInvokeCommand(uint8_t command_set, uint8_t command) argument
[all...]

Completed in 1511 milliseconds