Searched refs:GetInstructionSetFromString (Results 1 - 10 of 10) sorted by relevance

/art/runtime/arch/
H A Dinstruction_set_test.cc25 TEST(InstructionSetTest, GetInstructionSetFromString) {
26 EXPECT_EQ(kArm, GetInstructionSetFromString("arm"));
27 EXPECT_EQ(kArm64, GetInstructionSetFromString("arm64"));
28 EXPECT_EQ(kX86, GetInstructionSetFromString("x86"));
29 EXPECT_EQ(kX86_64, GetInstructionSetFromString("x86_64"));
30 EXPECT_EQ(kMips, GetInstructionSetFromString("mips"));
31 EXPECT_EQ(kMips64, GetInstructionSetFromString("mips64"));
32 EXPECT_EQ(kNone, GetInstructionSetFromString("none"));
33 EXPECT_EQ(kNone, GetInstructionSetFromString("random-string"));
48 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetStrin
[all...]
H A Dinstruction_set.cc48 InstructionSet GetInstructionSetFromString(const char* isa_str) { function in namespace:art
H A Dinstruction_set.h81 InstructionSet GetInstructionSetFromString(const char* instruction_set);
/art/cmdline/
H A Dcmdline.h146 instruction_set_ = GetInstructionSetFromString(instruction_set_str.data());
258 if (GetInstructionSetFromString(parent_dir_name.c_str()) != kNone) {
/art/runtime/native/
H A Ddalvik_system_DexFile.cc363 const InstructionSet target_instruction_set = GetInstructionSetFromString(instruction_set);
405 const InstructionSet target_instruction_set = GetInstructionSetFromString(
571 const InstructionSet target_instruction_set = GetInstructionSetFromString(
H A Ddalvik_system_ZygoteHooks.cc209 InstructionSet isa = GetInstructionSetFromString(isa_string.c_str());
H A Ddalvik_system_VMRuntime.cc615 InstructionSet isa = GetInstructionSetFromString(instruction_set.c_str());
/art/runtime/
H A Dparsed_options.cc344 auto&& image_isa = GetInstructionSetFromString(isa_str);
/art/patchoat/
H A Dpatchoat.cc1278 isa = GetInstructionSetFromString(isa_str);
/art/dex2oat/
H A Ddex2oat.cc613 instruction_set_ = GetInstructionSetFromString(buf.get());

Completed in 75 milliseconds