Home
last modified time | relevance | path

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

/art/runtime/
Dexec_utils_test.cc31 std::vector<std::string> command; in TEST_F() local
34 command.push_back(android_root + "/bin/id"); in TEST_F()
36 command.push_back("/usr/bin/id"); in TEST_F()
41 EXPECT_TRUE(Exec(command, &error_msg)); in TEST_F()
49 std::vector<std::string> command; in TEST_F() local
50 command.push_back("bogus"); in TEST_F()
54 EXPECT_FALSE(Exec(command, &error_msg)); in TEST_F()
64 std::vector<std::string> command; in TEST_F() local
67 command.push_back(android_root + "/bin/printenv"); in TEST_F()
69 command.push_back("/usr/bin/printenv"); in TEST_F()
[all …]
Druntime_options.def36 // Parse-able keys from the command line.
144 // Not parse-able from command line, but can be provided explicitly.
/art/tools/dexfuzz/src/dexfuzz/executors/
DDevice.java109 pb.command("adb", "devices"); in setup()
184 public ExecutionResult executeCommand(String command, boolean captureOutput) { in executeCommand() argument
186 return executeCommand(command, captureOutput, null, null); in executeCommand()
189 public ExecutionResult executeCommand(String command, boolean captureOutput, in executeCommand() argument
194 Log.info("Executing: " + command); in executeCommand()
197 ProcessBuilder processBuilder = new ProcessBuilder(splitCommand(command)); in executeCommand()
243 private List<String> splitCommand(String command) { in splitCommand() argument
245 Matcher m = Pattern.compile("(\'[^\']+\'| *[^ ]+ *)").matcher(command); in splitCommand()
251 private String getExecutionPrefixWithAdb(String command) { in getExecutionPrefixWithAdb() argument
253 return String.format("adb -s %s %s ", deviceName, command); in getExecutionPrefixWithAdb()
[all …]
DExecutor.java76 protected ExecutionResult executeCommandWithTimeout(String command, boolean captureOutput) { in executeCommandWithTimeout() argument
78 return device.executeCommand(timeoutString + device.getExecutionShellPrefix() + command, in executeCommandWithTimeout()
178 String command = ""; in execute() local
181 command = "PATH=" + androidRoot + "/bin "; in execute()
182 command += "ANDROID_ROOT=" + androidRoot + " "; in execute()
183 command += "LD_LIBRARY_PATH="+ androidRoot + "/lib:" + androidRoot + "/lib64 "; in execute()
185 command += constructCommand(programName); in execute()
186 executionResult = executeCommandWithTimeout(command, true); in execute()
/art/tools/
Dwrap-logcat.py41 if len(args.command) == 0:
52 with subprocess.Popen(shlex.split(args.command[0]) if len(args.command) == 1 else args.command,
/art/libartbase/base/
Dmembarrier.cc50 int membarrier(MembarrierCommand command) { in membarrier() argument
73 return syscall(__NR_membarrier, static_cast<int>(command), 0); in membarrier()
78 int membarrier(MembarrierCommand command ATTRIBUTE_UNUSED) {
Dmembarrier.h47 int membarrier(MembarrierCommand command);
/art/tools/bisection_search/
DREADME.md20 1. Regular invocation, dalvikvm command is constructed internally:
24 2. Raw-cmd invocation, dalvikvm command is accepted as an argument.
26 Extra dalvikvm arguments will be placed on second position in the command
29 If used in device mode, the command has to exec a dalvikvm instance. Bisection
51 dalvikvm command options:
58 … --raw-cmd RAW_CMD bisect with this command, ignore other command options
/art/test/304-method-tracing/
Dinfo.txt1 Test method tracing from command-line.
/art/dexoptanalyzer/
Ddexoptanalyzer.cc62 std::vector<std::string> command; in CommandLine() local
63 command.reserve(original_argc); in CommandLine()
65 command.push_back(original_argv[i]); in CommandLine()
67 return android::base::Join(command, ' '); in CommandLine()
/art/test/testrunner/
Dtestrunner.py519 command = ' '.join((run_test_sh, options_test, ' '.join(extra_arguments[target]), test))
520 return executor.submit(run_test, command, test, variant_set, test_name)
570 def run_test(command, test, test_variant, test_name): argument
599 args=command.split(),
606 args=command.split(),
621 failed_tests.append((test_name, str(command) + "\n" + script_output))
622 return (test_name, 'FAIL', ('%s\n%s') % (command, script_output), test_time)
658 return (test_name, 'TIMEOUT', 'Timed out in %d seconds\n%s' % (timeout, command), test_time)
661 return (test_name, 'FAIL', ('%s\n%s\n\n') % (command, str(e)), datetime.timedelta())
/art/tools/hiddenapi/
Dhiddenapi.cc47 std::vector<std::string> command; in CommandLine() local
48 command.reserve(original_argc); in CommandLine()
50 command.push_back(original_argv[i]); in CommandLine()
52 return android::base::Join(command, ' '); in CommandLine()
888 const std::string_view command(raw_command); in ParseArgs() local
889 if (command == "encode") { in ParseArgs()
906 } else if (command == "list") { in ParseArgs()
/art/test/
DREADME.chroot.md14 shell chroot $ART_TEST_CHROOT <command>` to execute commands on the device
94 * Specific tests to run can be passed on the command line, specified by
DREADME.md89 To see command flags run:
/art/compiler/driver/
Dcompiler_options_map.def36 // Parse-able keys from the command line.
/art/tools/dexfuzz/
DREADME32 having DEX files pushed to it and executed with the dalvikvm command.
41 7. Run this command:
/art/dex2oat/
Ddex2oat_options.def36 // Parse-able keys from the command line.
Ddex2oat.cc123 std::vector<std::string> command; in CommandLine() local
124 command.reserve(original_argc); in CommandLine()
126 command.push_back(original_argv[i]); in CommandLine()
128 return android::base::Join(command, ' '); in CommandLine()
135 std::vector<std::string> command; in StrippedCommandLine() local
186 command.push_back(original_argv[i]); in StrippedCommandLine()
190 command.push_back("--compiler-filter=" + in StrippedCommandLine()
195 if (command.size() <= 1U) { in StrippedCommandLine()
200 return android::base::Join(command, ' '); in StrippedCommandLine()
/art/profman/
Dprofman.cc67 std::vector<std::string> command; in CommandLine() local
68 command.reserve(original_argc); in CommandLine()
70 command.push_back(original_argv[i]); in CommandLine()
72 return android::base::Join(command, ' '); in CommandLine()
/art/tools/ahat/
DREADME.txt65 Add --retained command line option to ahat.
/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/tools/checker/
DREADME14 be listed with the '--list-passes' command-line flag).
/art/tools/dmtracedump/
Dtracedump.cc1479 char command[1024]; in createInclusiveProfileGraphNew() local
1480 snprintf(command, 1024, "dot -Tpng -o \"%s\" \"%s\"", gOptions.graphFileName, path); in createInclusiveProfileGraphNew()
1482 system(command); in createInclusiveProfileGraphNew()