HomeSort by relevance Sort by last modified time
    Searched refs:instruction_set_str (Results 1 - 2 of 2) sorted by null

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

Completed in 3882 milliseconds