Home
last modified time | relevance | path

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

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