Searched refs:GetInstructionSetString (Results 1 - 18 of 18) sorted by relevance

/art/runtime/arch/
H A Dinstruction_set_test.cc36 TEST(InstructionSetTest, GetInstructionSetString) {
37 EXPECT_STREQ("arm", GetInstructionSetString(kArm));
38 EXPECT_STREQ("arm", GetInstructionSetString(kThumb2));
39 EXPECT_STREQ("arm64", GetInstructionSetString(kArm64));
40 EXPECT_STREQ("x86", GetInstructionSetString(kX86));
41 EXPECT_STREQ("x86_64", GetInstructionSetString(kX86_64));
42 EXPECT_STREQ("mips", GetInstructionSetString(kMips));
43 EXPECT_STREQ("mips64", GetInstructionSetString(kMips64));
44 EXPECT_STREQ("none", GetInstructionSetString(kNone));
48 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeIS
[all...]
H A Dinstruction_set_features_test.cc41 std::string key = StringPrintf("dalvik.vm.isa.%s.variant", GetInstructionSetString(kRuntimeISA));
69 GetInstructionSetString(kRuntimeISA));
74 GetInstructionSetString(kRuntimeISA));
H A Dinstruction_set.cc25 const char* GetInstructionSetString(const InstructionSet isa) { function in namespace:art
H A Dinstruction_set.h78 const char* GetInstructionSetString(InstructionSet isa);
/art/runtime/
H A Ddex2oat_environment_test.h51 odex_dir_ = odex_oat_dir_ + "/" + std::string(GetInstructionSetString(kRuntimeISA));
134 return GetImageDirectory() + "/" + GetInstructionSetString(kRuntimeISA)
139 std::string cache = GetDalvikCache(GetInstructionSetString(kRuntimeISA), true);
H A Dnative_bridge_art_interface.cc104 android::PreInitializeNativeBridge(dir.c_str(), GetInstructionSetString(kRuntimeISA));
H A Dsignal_catcher.cc140 os << "ABI: '" << GetInstructionSetString(runtime->GetInstructionSet()) << "'\n";
H A Doat_file_assistant.cc402 DalvikCacheDirectory().c_str(), GetInstructionSetString(isa_));
654 argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(isa_)));
807 dir += "oat/" + std::string(GetInstructionSetString(isa));
H A Doat_file_assistant_test.cc65 argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(kRuntimeISA)));
90 std::string dalvik_cache = GetDalvikCache(GetInstructionSetString(kRuntimeISA));
H A Druntime.cc644 GetInstructionSetString(kRuntimeISA));
1945 instruction_set += GetInstructionSetString(kRuntimeISA);
H A Dutils.cc1385 filename->insert(pos + 1, GetInstructionSetString(isa));
/art/runtime/gc/space/
H A Dimage_space_fs.h94 impl::DeleteDirectoryContents(GetDalvikCacheOrDie(GetInstructionSetString(isa), false), false);
107 const std::string isa_subdir = GetDalvikCacheOrDie(GetInstructionSetString(isa), false);
H A Dimage_space.cc161 GetDalvikCache(GetInstructionSetString(image_isa), true, &dalvik_cache,
210 instruction_set_arg += GetInstructionSetString(isa);
/art/cmdline/
H A Dcmdline.h56 GetDalvikCache(GetInstructionSetString(isa), false, &dalvik_cache,
105 reinterpret_cast<const void*>(GetInstructionSetString(instruction_set))));
206 GetInstructionSetString(kRuntimeISA));
/art/oatdump/
H A Doatdump_test.cc72 exec_argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(kRuntimeISA)));
/art/runtime/native/
H A Ddalvik_system_VMRuntime.cc183 const char* isa_string = GetInstructionSetString(isa);
629 return env->NewStringUTF(GetInstructionSetString(kRuntimeISA));
/art/patchoat/
H A Dpatchoat.cc68 GetDalvikCache(GetInstructionSetString(isa), false, &dalvik_cache,
164 const char* isa_name = GetInstructionSetString(isa);
/art/dex2oat/
H A Ddex2oat.cc2190 std::make_pair("imageinstructionset", GetInstructionSetString(instruction_set_)));
2416 GetInstructionSetString(isa)) {

Completed in 769 milliseconds