Home
last modified time | relevance | path

Searched refs:GetInstructionSetFromString (Results 1 – 8 of 8) sorted by relevance

/art/runtime/
Dinstruction_set_test.cc25 TEST_F(InstructionSetTest, GetInstructionSetFromString) { in TEST_F() argument
26 EXPECT_EQ(kArm, GetInstructionSetFromString("arm")); in TEST_F()
27 EXPECT_EQ(kArm64, GetInstructionSetFromString("arm64")); in TEST_F()
28 EXPECT_EQ(kX86, GetInstructionSetFromString("x86")); in TEST_F()
29 EXPECT_EQ(kX86_64, GetInstructionSetFromString("x86_64")); in TEST_F()
30 EXPECT_EQ(kMips, GetInstructionSetFromString("mips")); in TEST_F()
31 EXPECT_EQ(kNone, GetInstructionSetFromString("none")); in TEST_F()
32 EXPECT_EQ(kNone, GetInstructionSetFromString("random-string")); in TEST_F()
46 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA))); in TEST_F()
Dinstruction_set.cc42 InstructionSet GetInstructionSetFromString(const char* isa_str) { in GetInstructionSetFromString() function
Dinstruction_set.h80 InstructionSet GetInstructionSetFromString(const char* instruction_set);
Dparsed_options.cc426 image_isa_ = GetInstructionSetFromString(isa_str); in Parse()
/art/runtime/native/
Ddalvik_system_ZygoteHooks.cc121 InstructionSet isa = GetInstructionSetFromString(isa_string.c_str()); in ZygoteHooks_nativePostForkChild()
Ddalvik_system_DexFile.cc504 const InstructionSet target_instruction_set = GetInstructionSetFromString(instruction_set); in CopyProfileFile()
Ddalvik_system_VMRuntime.cc530 InstructionSet isa = GetInstructionSetFromString(instruction_set.c_str()); in VMRuntime_isBootClassPathOnDisk()
/art/patchoat/
Dpatchoat.cc965 isa = GetInstructionSetFromString(isa_str); in patchoat()