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

  /art/runtime/
instruction_set.cc 42 InstructionSet GetInstructionSetFromString(const char* isa_str) {
43 CHECK(isa_str != nullptr);
45 if (strcmp("arm", isa_str) == 0) {
47 } else if (strcmp("arm64", isa_str) == 0) {
49 } else if (strcmp("x86", isa_str) == 0) {
51 } else if (strcmp("x86_64", isa_str) == 0) {
53 } else if (strcmp("mips", isa_str) == 0) {
parsed_options.cc 425 const char* isa_str = reinterpret_cast<const char*>(options[i].second); local
426 image_isa_ = GetInstructionSetFromString(isa_str);
428 Usage("%s is not a valid instruction set.", isa_str);
    [all...]
  /art/patchoat/
patchoat.cc 964 const char* isa_str = option.substr(strlen("--instruction-set=")).data(); local
    [all...]

Completed in 71 milliseconds