Searched refs:GetInstructionSetFromString (Results 1 – 11 of 11) sorted by relevance
/art/runtime/arch/ |
D | instruction_set_test.cc | 25 TEST(InstructionSetTest, GetInstructionSetFromString) { in TEST() argument 26 EXPECT_EQ(InstructionSet::kArm, GetInstructionSetFromString("arm")); in TEST() 27 EXPECT_EQ(InstructionSet::kArm64, GetInstructionSetFromString("arm64")); in TEST() 28 EXPECT_EQ(InstructionSet::kX86, GetInstructionSetFromString("x86")); in TEST() 29 EXPECT_EQ(InstructionSet::kX86_64, GetInstructionSetFromString("x86_64")); in TEST() 30 EXPECT_EQ(InstructionSet::kMips, GetInstructionSetFromString("mips")); in TEST() 31 EXPECT_EQ(InstructionSet::kMips64, GetInstructionSetFromString("mips64")); in TEST() 32 EXPECT_EQ(InstructionSet::kNone, GetInstructionSetFromString("none")); in TEST() 33 EXPECT_EQ(InstructionSet::kNone, GetInstructionSetFromString("random-string")); in TEST() 63 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA))); in TEST()
|
D | instruction_set.cc | 66 InstructionSet GetInstructionSetFromString(const char* isa_str) { in GetInstructionSetFromString() function
|
D | instruction_set.h | 90 InstructionSet GetInstructionSetFromString(const char* instruction_set);
|
/art/cmdline/ |
D | cmdline.h | 151 instruction_set_ = GetInstructionSetFromString(instruction_set_str.data()); in Parse() 267 if (GetInstructionSetFromString(parent_dir_name.c_str()) != InstructionSet::kNone) { in ParseCheckBootImage()
|
/art/runtime/native/ |
D | dalvik_system_DexFile.cc | 481 const InstructionSet target_instruction_set = GetInstructionSetFromString(instruction_set); in GetDexOptNeeded() 540 const InstructionSet target_instruction_set = GetInstructionSetFromString( in DexFile_getDexFileStatus() 570 const InstructionSet target_instruction_set = GetInstructionSetFromString( in DexFile_getDexFileOptimizationStatus() 762 const InstructionSet target_instruction_set = GetInstructionSetFromString( in DexFile_getDexFileOutputPaths()
|
D | dalvik_system_ZygoteHooks.cc | 389 InstructionSet isa = GetInstructionSetFromString(isa_string.c_str()); in ZygoteHooks_nativePostForkChild()
|
D | dalvik_system_VMRuntime.cc | 650 InstructionSet isa = GetInstructionSetFromString(instruction_set.c_str()); in VMRuntime_isBootClassPathOnDisk()
|
/art/dexoptanalyzer/ |
D | dexoptanalyzer.cc | 168 isa_ = GetInstructionSetFromString(isa_str.c_str()); in ParseArgs()
|
/art/dex2oat/ |
D | dex2oat_options.cc | 29 InstructionSet set = GetInstructionSetFromString(option.c_str()); in Parse()
|
/art/runtime/ |
D | parsed_options.cc | 385 auto&& image_isa = GetInstructionSetFromString(isa_str); in ProcessSpecialOptions()
|
/art/patchoat/ |
D | patchoat.cc | 1243 isa = GetInstructionSetFromString(isa_str); in patchoat()
|