OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:instruction_set_str
(Results
1 - 2
of
2
) sorted by null
/art/cmdline/
cmdline.h
145
StringPiece
instruction_set_str
= option.substr(strlen("--instruction-set=")).data();
local
146
instruction_set_ = GetInstructionSetFromString(
instruction_set_str
.data());
148
fprintf(stderr, "Unsupported instruction set %s\n",
instruction_set_str
.data());
/art/dex2oat/
dex2oat.cc
608
StringPiece
instruction_set_str
= option.substr(strlen("--instruction-set=")).data();
local
610
std::unique_ptr<char[]> buf(new char[
instruction_set_str
.length() + 1]);
611
strncpy(buf.get(),
instruction_set_str
.data(),
instruction_set_str
.length());
612
buf.get()[
instruction_set_str
.length()] = 0;
[
all
...]
Completed in 71 milliseconds