Searched defs:instruction_set_str (Results 1 - 2 of 2) sorted by relevance

/art/cmdline/
H A Dcmdline.h145 StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data(); local
146 instruction_set_ = GetInstructionSetFromString(instruction_set_str.data());
148 fprintf(stderr, "Unsupported instruction set %s\n", instruction_set_str.data());
/art/dex2oat/
H A Ddex2oat.cc608 StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data(); local
610 std::unique_ptr<char[]> buf(new char[instruction_set_str.length() + 1]);
611 strncpy(buf.get(), instruction_set_str.data(), instruction_set_str.length());
612 buf.get()[instruction_set_str.length()] = 0;

Completed in 48 milliseconds