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 147 StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data(); local
148 instruction_set_ = GetInstructionSetFromString(instruction_set_str.data());
150 fprintf(stderr, "Unsupported instruction set %s\n", instruction_set_str.data());
  /art/dex2oat/
dex2oat.cc 703 StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data(); local
705 std::unique_ptr<char[]> buf(new char[instruction_set_str.length() + 1]);
706 strncpy(buf.get(), instruction_set_str.data(), instruction_set_str.length());
707 buf.get()[instruction_set_str.length()] = 0;
    [all...]

Completed in 849 milliseconds