Home
last modified time | relevance | path

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

/art/tools/dexfuzz/src/dexfuzz/executors/
DDevice.java99 pb.command("adb", "devices"); in setup()
170 public ExecutionResult executeCommand(String command, boolean captureOutput) { in executeCommand() argument
172 return executeCommand(command, captureOutput, null, null); in executeCommand()
175 public ExecutionResult executeCommand(String command, boolean captureOutput, in executeCommand() argument
180 Log.info("Executing: " + command); in executeCommand()
183 ProcessBuilder processBuilder = new ProcessBuilder(command.split(" ")); in executeCommand()
226 private String getExecutionPrefixWithAdb(String command) { in getExecutionPrefixWithAdb() argument
228 return String.format("adb -s %s %s ", deviceName, command); in getExecutionPrefixWithAdb()
230 return String.format("adb %s ", command); in getExecutionPrefixWithAdb()
250 String command = "rm -f " + getCacheLocation(architecture) in cleanCodeCache() local
[all …]
DExecutor.java74 protected ExecutionResult executeCommandWithTimeout(String command, boolean captureOutput) { in executeCommandWithTimeout() argument
76 return device.executeCommand(timeoutString + device.getExecutionShellPrefix() + command, in executeCommandWithTimeout()
/art/runtime/
Dutils_test.cc353 std::vector<std::string> command; in TEST_F() local
356 command.push_back(android_root + "/bin/id"); in TEST_F()
358 command.push_back("/usr/bin/id"); in TEST_F()
363 EXPECT_TRUE(Exec(command, &error_msg)); in TEST_F()
372 std::vector<std::string> command; in TEST_F() local
373 command.push_back("bogus"); in TEST_F()
377 EXPECT_FALSE(Exec(command, &error_msg)); in TEST_F()
Druntime_options.def34 // Parse-able keys from the command line.
110 // Not parse-able from command line, but can be provided explicitly.
/art/test/304-method-tracing/
Dinfo.txt1 Test method tracing from command-line.
/art/test/
DREADME.txt4 single test. Run "./run-test" with no arguments to see command flags;
/art/dex2oat/
Ddex2oat.cc85 std::vector<std::string> command; in CommandLine() local
87 command.push_back(original_argv[i]); in CommandLine()
89 return Join(command, ' '); in CommandLine()
96 std::vector<std::string> command; in StrippedCommandLine() local
138 command.push_back(original_argv[i]); in StrippedCommandLine()
142 if (command.size() <= 1U) { in StrippedCommandLine()
146 return Join(command, ' '); in StrippedCommandLine()
/art/tools/dexfuzz/
DREADME32 having DEX files pushed to it and executed with the dalvikvm command.
41 7. Run this command:
/art/runtime/jdwp/
Djdwp_handler.cc1564 static bool IsInvokeCommand(uint8_t command_set, uint8_t command) { in IsInvokeCommand() argument
1566 return command == kJDWPClassTypeInvokeMethodCmd || command == kJDWPClassTypeNewInstanceCmd; in IsInvokeCommand()
1568 return command == kJDWPObjectReferenceInvokeCmd; in IsInvokeCommand()
/art/cmdline/
DREADME.md6 This directory contains the classes that do common command line tool initialization and parsing. The
7 long term goal is eventually for all `art` command-line tools to be using these helpers.
/art/patchoat/
Dpatchoat.cc788 std::vector<std::string> command; in CommandLine() local
790 command.push_back(orig_argv[i]); in CommandLine()
792 return Join(command, ' '); in CommandLine()