Home
last modified time | relevance | path

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

/aosp_15_r20/art/libartbase/arch/
H A Dinstruction_set_test.cc25 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::kNone, GetInstructionSetFromString("none")); in TEST()
31 EXPECT_EQ(InstructionSet::kNone, GetInstructionSetFromString("random-string")); in TEST()
55 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA))); in TEST()
H A Dinstruction_set.cc59 InstructionSet GetInstructionSetFromString(const char* isa_str) { in GetInstructionSetFromString() function
H A Dinstruction_set.h95 InstructionSet GetInstructionSetFromString(const char* instruction_set);
/aosp_15_r20/art/cmdline/
H A Dcmdline.h121 instruction_set_ = GetInstructionSetFromString(instruction_set_str); in Parse()
258 if (GetInstructionSetFromString(parent_dir_name.c_str()) != InstructionSet::kNone) { in ParseCheckBootImage()
/aosp_15_r20/art/runtime/native/
H A Ddalvik_system_DexFile.cc580 const InstructionSet target_instruction_set = GetInstructionSetFromString(instruction_set); in GetDexOptNeeded()
645 const InstructionSet target_instruction_set = GetInstructionSetFromString( in DexFile_getDexFileStatus()
679 const InstructionSet target_instruction_set = GetInstructionSetFromString( in DexFile_getDexFileOptimizationStatus()
897 const InstructionSet target_instruction_set = GetInstructionSetFromString( in DexFile_getDexFileOutputPaths()
H A Ddalvik_system_ZygoteHooks.cc429 InstructionSet isa = GetInstructionSetFromString(isa_string.c_str()); in ZygoteHooks_nativePostForkChild()
H A Ddalvik_system_VMRuntime.cc409 InstructionSet isa = GetInstructionSetFromString(instruction_set.c_str()); in VMRuntime_isBootClassPathOnDisk()
/aosp_15_r20/prebuilts/module_sdk/art/3/common_os/include/art/libartbase/arch/
Dinstruction_set.h79 InstructionSet GetInstructionSetFromString(const char* instruction_set);
/aosp_15_r20/prebuilts/module_sdk/art/1/host-exports/include/art/libartbase/arch/
Dinstruction_set.h79 InstructionSet GetInstructionSetFromString(const char* instruction_set);
/aosp_15_r20/prebuilts/module_sdk/art/1/common_os/include/art/libartbase/arch/
Dinstruction_set.h79 InstructionSet GetInstructionSetFromString(const char* instruction_set);
/aosp_15_r20/prebuilts/module_sdk/art/7/common_os/include/art/libartbase/arch/
Dinstruction_set.h87 InstructionSet GetInstructionSetFromString(const char* instruction_set);
/aosp_15_r20/prebuilts/module_sdk/art/current/sdk/common_os/include/art/libartbase/arch/
Dinstruction_set.h87 InstructionSet GetInstructionSetFromString(const char* instruction_set);
/aosp_15_r20/prebuilts/module_sdk/art/current/sdk/include/art/libartbase/arch/
Dinstruction_set.h87 InstructionSet GetInstructionSetFromString(const char* instruction_set);
/aosp_15_r20/prebuilts/module_sdk/art/13/common_os/include/art/libartbase/arch/
Dinstruction_set.h87 InstructionSet GetInstructionSetFromString(const char* instruction_set);
/aosp_15_r20/prebuilts/module_sdk/art/13/include/art/libartbase/arch/
Dinstruction_set.h87 InstructionSet GetInstructionSetFromString(const char* instruction_set);
/aosp_15_r20/prebuilts/module_sdk/art/current/host-exports/include/art/libartbase/arch/
Dinstruction_set.h87 InstructionSet GetInstructionSetFromString(const char* instruction_set);
/aosp_15_r20/art/dex2oat/
H A Ddex2oat_options.cc29 InstructionSet set = GetInstructionSetFromString(option.c_str()); in Parse()
/aosp_15_r20/art/dexoptanalyzer/
H A Ddexoptanalyzer.cc184 isa_ = GetInstructionSetFromString(isa_str); in ParseArgs()
/aosp_15_r20/art/artd/
H A Dpath_utils.cc165 InstructionSet isa = GetInstructionSetFromString(artifacts_path.isa.c_str()); in BuildArtifactsPath()
/aosp_15_r20/art/runtime/
H A Dparsed_options.cc553 auto&& image_isa = GetInstructionSetFromString(isa_str); in ProcessSpecialOptions()
/aosp_15_r20/art/runtime/oat/
H A Doat_file_assistant.cc238 InstructionSet isa = GetInstructionSetFromString(isa_str.c_str()); in Create()