Home
last modified time | relevance | path

Searched refs:GetInstructionSetString (Results 1 – 14 of 14) sorted by relevance

/art/runtime/
Dinstruction_set_test.cc35 TEST_F(InstructionSetTest, GetInstructionSetString) { in TEST_F() argument
36 EXPECT_STREQ("arm", GetInstructionSetString(kArm)); in TEST_F()
37 EXPECT_STREQ("arm", GetInstructionSetString(kThumb2)); in TEST_F()
38 EXPECT_STREQ("arm64", GetInstructionSetString(kArm64)); in TEST_F()
39 EXPECT_STREQ("x86", GetInstructionSetString(kX86)); in TEST_F()
40 EXPECT_STREQ("x86_64", GetInstructionSetString(kX86_64)); in TEST_F()
41 EXPECT_STREQ("mips", GetInstructionSetString(kMips)); in TEST_F()
42 EXPECT_STREQ("none", GetInstructionSetString(kNone)); in TEST_F()
46 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA))); in TEST_F()
Dinstruction_set.cc21 const char* GetInstructionSetString(const InstructionSet isa) { in GetInstructionSetString() function
Dnative_bridge_art_interface.cc123 android::PreInitializeNativeBridge(dir.c_str(), GetInstructionSetString(kRuntimeISA)); in PreInitializeNativeBridge()
Dinstruction_set.h77 const char* GetInstructionSetString(InstructionSet isa);
Dsignal_catcher.cc145 os << "ABI: " << GetInstructionSetString(runtime->GetInstructionSet()) << "\n"; in HandleSigQuit()
Druntime.cc454 GetInstructionSetString(kRuntimeISA)); in Start()
1435 instruction_set += GetInstructionSetString(kRuntimeISA); in AddCurrentRuntimeFeaturesAsDex2OatArguments()
Dutils.cc1285 filename->insert(pos + 1, GetInstructionSetString(isa)); in InsertIsaDirectory()
Dclass_linker.cc937 const std::string dalvik_cache(GetDalvikCacheOrDie(GetInstructionSetString(kRuntimeISA))); in OpenDexFilesFromOat()
1265 GetDalvikCache(GetInstructionSetString(kRuntimeISA), false, &dalvik_cache, in OpenOatFileFromDexLocation()
1352 GetDalvikCacheOrDie(GetInstructionSetString(kRuntimeISA), true); in OpenOatFileFromDexLocation()
1453 isa_arg += GetInstructionSetString(isa); in PatchAndRetrieveOat()
/art/runtime/gc/space/
Dimage_space.cc83 RealPruneDalvikCache(GetDalvikCacheOrDie(GetInstructionSetString(isa), false)); in PruneDalvikCache()
125 const std::string isa_subdir = GetDalvikCacheOrDie(GetInstructionSetString(isa), false); in MarkZygoteStart()
219 GetDalvikCache(GetInstructionSetString(image_isa), true, &dalvik_cache, in FindImageFilename()
274 instruction_set_arg += GetInstructionSetString(isa); in RelocateImage()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc164 const char* isa_string = GetInstructionSetString(isa); in VMRuntime_vmInstructionSet()
544 return env->NewStringUTF(GetInstructionSetString(kRuntimeISA)); in VMRuntime_getCurrentInstructionSet()
Ddalvik_system_DexFile.cc603 const char* instruction_set = GetInstructionSetString(kRuntimeISA); in CopyProfileFile()
/art/patchoat/
Dpatchoat.cc84 GetDalvikCache(GetInstructionSetString(isa), false, &dalvik_cache, in LocationToFilename()
121 const char *isa_name = GetInstructionSetString(isa); in Patch()
218 const char* isa_name = GetInstructionSetString(isa); in Patch()
/art/oatdump/
Doatdump.cc84 GetInstructionSetString(kRuntimeISA)); in usage()
1811 reinterpret_cast<const void*>(GetInstructionSetString(instruction_set)))); in oatdump()
/art/dex2oat/
Ddex2oat.cc1356 reinterpret_cast<const void*>(GetInstructionSetString(instruction_set)))); in dex2oat()