Home
last modified time | relevance | path

Searched refs:instruction_set_str (Results 1 – 2 of 2) sorted by relevance

/art/cmdline/
Dcmdline.h144 StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data(); in Parse() local
145 instruction_set_ = GetInstructionSetFromString(instruction_set_str.data()); in Parse()
147 fprintf(stderr, "Unsupported instruction set %s\n", instruction_set_str.data()); in Parse()
/art/dex2oat/
Ddex2oat.cc656 StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data(); in ParseArgs() local
658 std::unique_ptr<char[]> buf(new char[instruction_set_str.length() + 1]); in ParseArgs()
659 strncpy(buf.get(), instruction_set_str.data(), instruction_set_str.length()); in ParseArgs()
660 buf.get()[instruction_set_str.length()] = 0; in ParseArgs()