Searched refs:GetInstructionSetString (Results 1 – 16 of 16) sorted by relevance
/art/runtime/arch/ |
D | instruction_set_test.cc | 36 TEST(InstructionSetTest, GetInstructionSetString) { in TEST() argument 37 EXPECT_STREQ("arm", GetInstructionSetString(kArm)); in TEST() 38 EXPECT_STREQ("arm", GetInstructionSetString(kThumb2)); in TEST() 39 EXPECT_STREQ("arm64", GetInstructionSetString(kArm64)); in TEST() 40 EXPECT_STREQ("x86", GetInstructionSetString(kX86)); in TEST() 41 EXPECT_STREQ("x86_64", GetInstructionSetString(kX86_64)); in TEST() 42 EXPECT_STREQ("mips", GetInstructionSetString(kMips)); in TEST() 43 EXPECT_STREQ("mips64", GetInstructionSetString(kMips64)); in TEST() 44 EXPECT_STREQ("none", GetInstructionSetString(kNone)); in TEST() 48 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA))); in TEST()
|
D | instruction_set_features_test.cc | 41 std::string key = StringPrintf("dalvik.vm.isa.%s.variant", GetInstructionSetString(kRuntimeISA)); 69 GetInstructionSetString(kRuntimeISA)); 74 GetInstructionSetString(kRuntimeISA));
|
D | instruction_set.cc | 25 const char* GetInstructionSetString(const InstructionSet isa) { in GetInstructionSetString() function
|
D | instruction_set.h | 78 const char* GetInstructionSetString(InstructionSet isa);
|
/art/cmdline/ |
D | cmdline.h | 56 GetDalvikCache(GetInstructionSetString(isa), false, &dalvik_cache, in LocationToFilename() 106 reinterpret_cast<const void*>(GetInstructionSetString(instruction_set)))); in StartRuntime() 204 GetInstructionSetString(kRuntimeISA)); in GetUsage()
|
/art/runtime/ |
D | native_bridge_art_interface.cc | 119 android::PreInitializeNativeBridge(dir.c_str(), GetInstructionSetString(kRuntimeISA)); in PreInitializeNativeBridge()
|
D | signal_catcher.cc | 140 os << "ABI: '" << GetInstructionSetString(runtime->GetInstructionSet()) << "'\n"; in HandleSigQuit()
|
D | oat_file_assistant.cc | 324 DalvikCacheDirectory().c_str(), GetInstructionSetString(isa_)); in OatFileName() 632 argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(isa_))); in CopyProfileFile() 762 dir += "oat/" + std::string(GetInstructionSetString(isa)); in CopyProfileFile()
|
D | oat_file_assistant_test.cc | 55 odex_dir_ = odex_oat_dir_ + "/" + std::string(GetInstructionSetString(kRuntimeISA)); in SetUp() 147 return GetImageDirectory() + "/" + GetInstructionSetString(kRuntimeISA) in GetImageFile()
|
D | runtime.cc | 544 GetInstructionSetString(kRuntimeISA)); in Start() 1685 instruction_set += GetInstructionSetString(kRuntimeISA); in AddCurrentRuntimeFeaturesAsDex2OatArguments()
|
D | utils.cc | 1364 filename->insert(pos + 1, GetInstructionSetString(isa)); in InsertIsaDirectory()
|
/art/runtime/gc/space/ |
D | image_space.cc | 87 RealPruneDalvikCache(GetDalvikCacheOrDie(GetInstructionSetString(isa), false)); in PruneDalvikCache() 129 const std::string isa_subdir = GetDalvikCacheOrDie(GetInstructionSetString(isa), false); in MarkZygoteStart() 255 GetDalvikCache(GetInstructionSetString(image_isa), true, &dalvik_cache, in FindImageFilename() 310 instruction_set_arg += GetInstructionSetString(isa); in RelocateImage()
|
/art/runtime/native/ |
D | dalvik_system_VMRuntime.cc | 179 const char* isa_string = GetInstructionSetString(isa); in VMRuntime_vmInstructionSet() 594 return env->NewStringUTF(GetInstructionSetString(kRuntimeISA)); in VMRuntime_getCurrentInstructionSet()
|
D | dalvik_system_DexFile.cc | 373 const char* instruction_set = GetInstructionSetString(kRuntimeISA); in DexFile_isDexOptNeeded()
|
/art/patchoat/ |
D | patchoat.cc | 68 GetDalvikCache(GetInstructionSetString(isa), false, &dalvik_cache, in LocationToFilename() 105 const char *isa_name = GetInstructionSetString(isa); in Patch() 202 const char* isa_name = GetInstructionSetString(isa); in Patch()
|
/art/dex2oat/ |
D | dex2oat.cc | 1185 std::make_pair("imageinstructionset", GetInstructionSetString(instruction_set_))); in Setup()
|