Home
last modified time | relevance | path

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

/art/runtime/arch/
Dinstruction_set_test.cc25 TEST(InstructionSetTest, GetInstructionSetFromString) { in TEST() argument
26 EXPECT_EQ(kArm, GetInstructionSetFromString("arm")); in TEST()
27 EXPECT_EQ(kArm64, GetInstructionSetFromString("arm64")); in TEST()
28 EXPECT_EQ(kX86, GetInstructionSetFromString("x86")); in TEST()
29 EXPECT_EQ(kX86_64, GetInstructionSetFromString("x86_64")); in TEST()
30 EXPECT_EQ(kMips, GetInstructionSetFromString("mips")); in TEST()
31 EXPECT_EQ(kMips64, GetInstructionSetFromString("mips64")); in TEST()
32 EXPECT_EQ(kNone, GetInstructionSetFromString("none")); in TEST()
33 EXPECT_EQ(kNone, GetInstructionSetFromString("random-string")); in TEST()
57 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA))); in TEST()
Dinstruction_set.cc69 InstructionSet GetInstructionSetFromString(const char* isa_str) { in GetInstructionSetFromString() function
Dinstruction_set.h89 InstructionSet GetInstructionSetFromString(const char* instruction_set);
/art/cmdline/
Dcmdline.h148 instruction_set_ = GetInstructionSetFromString(instruction_set_str.data()); in Parse()
260 if (GetInstructionSetFromString(parent_dir_name.c_str()) != kNone) { in ParseCheckBootImage()
/art/dexoptanalyzer/
Ddexoptanalyzer.cc152 isa_ = GetInstructionSetFromString(isa_str.c_str()); in ParseArgs()
/art/runtime/native/
Ddalvik_system_DexFile.cc468 const InstructionSet target_instruction_set = GetInstructionSetFromString(instruction_set); in GetDexOptNeeded()
510 const InstructionSet target_instruction_set = GetInstructionSetFromString( in DexFile_getDexFileStatus()
674 const InstructionSet target_instruction_set = GetInstructionSetFromString( in DexFile_getDexFileOutputPaths()
Ddalvik_system_ZygoteHooks.cc313 InstructionSet isa = GetInstructionSetFromString(isa_string.c_str()); in ZygoteHooks_nativePostForkChild()
Ddalvik_system_VMRuntime.cc615 InstructionSet isa = GetInstructionSetFromString(instruction_set.c_str()); in VMRuntime_isBootClassPathOnDisk()
/art/runtime/
Dparsed_options.cc352 auto&& image_isa = GetInstructionSetFromString(isa_str); in ProcessSpecialOptions()
/art/patchoat/
Dpatchoat.cc808 isa = GetInstructionSetFromString(isa_str); in patchoat()
/art/dex2oat/
Ddex2oat.cc649 instruction_set_ = GetInstructionSetFromString(buf.get()); in ParseInstructionSet()