Searched defs:cmd (Results 1 - 5 of 5) sorted by relevance

/art/compiler/debug/dwarf/
H A Ddwarf_test.h87 std::string cmd = GetAndroidHostToolsDir(); local
88 cmd = cmd + "objdump " + args + " " + file.GetFilename() + " 2>&1";
89 FILE* output = popen(cmd.data(), "r");
/art/compiler/utils/
H A Dassembler_thumb_test.cc119 char cmd[1024]; local
122 snprintf(cmd, sizeof(cmd), "%sas %s -o %s.o", toolsdir.c_str(), filename, filename);
123 int cmd_result = system(cmd);
128 snprintf(cmd, sizeof(cmd), "%sobjcopy -N '$d' %s.o %s.oo", toolsdir.c_str(), filename, filename);
129 int cmd_result2 = system(cmd);
134 snprintf(cmd, sizeof(cmd), "%sobjdump -d %s.oo | grep '^ *[0-9a-f][0-9a-f]*:'",
139 strcat(cmd, " | se
[all...]
H A Dassembler_test_base.h222 std::string cmd = Join(args, ' '); local
227 args.push_back(cmd);
258 std::string cmd = Join(args, ' '); local
263 args.push_back(cmd);
338 std::string cmd = Join(args, ' '); local
343 args.push_back(cmd);
552 << " cmd=" << sh_args;
/art/runtime/jdwp/
H A Djdwp_handler.cc1432 uint8_t cmd; member in struct:art::JDWP::JdwpHandlerMap
1575 gHandlers[i].cmd == request->GetCommand()) {
1648 gHandlers[i].cmd == request->GetCommand() &&
/art/runtime/
H A Dutils.cc1042 static bool RunCommand(std::string cmd, std::ostream* os, const char* prefix) { argument
1043 FILE* stream = popen(cmd.c_str(), "r");

Completed in 135 milliseconds