Searched refs:cmd (Results 1 – 5 of 5) sorted by relevance
/art/compiler/dwarf/ |
D | dwarf_test.h | 97 std::string cmd = GetAndroidHostToolsDir(); in Objdump() local 98 cmd = cmd + "objdump " + args + " " + file.GetFilename() + " 2>&1"; in Objdump() 99 FILE* output = popen(cmd.data(), "r"); in Objdump()
|
/art/compiler/utils/ |
D | assembler_test_base.h | 210 std::string cmd = Join(args, ' '); in Assemble() local 215 args.push_back(cmd); in Assemble() 246 std::string cmd = Join(args, ' '); in Objdump() local 251 args.push_back(cmd); in Objdump() 326 std::string cmd = Join(args, ' '); in DisassembleBinary() local 331 args.push_back(cmd); in DisassembleBinary()
|
D | assembler_thumb_test.cc | 104 char cmd[1024]; in dump() local 107 snprintf(cmd, sizeof(cmd), "%sas %s -o %s.o", toolsdir.c_str(), filename, filename); in dump() 108 system(cmd); in dump() 112 snprintf(cmd, sizeof(cmd), "%sobjcopy -N '$d' %s.o %s.oo", toolsdir.c_str(), filename, filename); in dump() 113 system(cmd); in dump() 117 snprintf(cmd, sizeof(cmd), "%sobjdump -d %s.oo | grep '^ *[0-9a-f][0-9a-f]*:'", in dump() 122 system(cmd); in dump() 125 FILE *fp = popen(cmd, "r"); in dump()
|
/art/runtime/jdwp/ |
D | jdwp_handler.cc | 1406 uint8_t cmd; member 1548 gHandlers[i].cmd == request->GetCommand()) { in GetCommandName() 1619 gHandlers[i].cmd == request->GetCommand() && in ProcessRequest()
|
/art/runtime/ |
D | utils.cc | 1038 static bool RunCommand(std::string cmd, std::ostream* os, const char* prefix) { in RunCommand() argument 1039 FILE* stream = popen(cmd.c_str(), "r"); in RunCommand()
|