Searched refs:GetInstructionSetString (Results 1 – 17 of 17) 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() 105 reinterpret_cast<const void*>(GetInstructionSetString(instruction_set)))); in StartRuntime() 206 GetInstructionSetString(kRuntimeISA)); in GetUsage()
|
/art/runtime/gc/space/ |
D | image_space_fs.h | 203 impl::DeleteDirectoryContents(GetDalvikCacheOrDie(GetInstructionSetString(isa), false), false); in PruneDalvikCache() 216 const std::string isa_subdir = GetDalvikCacheOrDie(GetInstructionSetString(isa), false); in MarkZygoteStart()
|
D | image_space.cc | 161 GetDalvikCache(GetInstructionSetString(image_isa), true, &dalvik_cache, in FindImageFilename() 210 instruction_set_arg += GetInstructionSetString(isa); in RelocateImage()
|
/art/runtime/ |
D | native_bridge_art_interface.cc | 104 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 | 402 DalvikCacheDirectory().c_str(), GetInstructionSetString(isa_)); in OatFileName() 654 argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(isa_))); in RelocateOatFile() 807 dir += "oat/" + std::string(GetInstructionSetString(isa)); in DexFilenameToOdexFilename()
|
D | oat_file_assistant_test.cc | 56 odex_dir_ = odex_oat_dir_ + "/" + std::string(GetInstructionSetString(kRuntimeISA)); in SetUp() 148 return GetImageDirectory() + "/" + GetInstructionSetString(kRuntimeISA) in GetImageFile() 214 argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(kRuntimeISA))); in GenerateOdexForTest()
|
D | runtime.cc | 619 GetInstructionSetString(kRuntimeISA)); in Start() 1921 instruction_set += GetInstructionSetString(kRuntimeISA); in AddCurrentRuntimeFeaturesAsDex2OatArguments()
|
D | utils.cc | 1385 filename->insert(pos + 1, GetInstructionSetString(isa)); in InsertIsaDirectory()
|
/art/oatdump/ |
D | oatdump_test.cc | 72 exec_argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(kRuntimeISA))); in Exec()
|
/art/runtime/native/ |
D | dalvik_system_VMRuntime.cc | 183 const char* isa_string = GetInstructionSetString(isa); in VMRuntime_vmInstructionSet() 629 return env->NewStringUTF(GetInstructionSetString(kRuntimeISA)); in VMRuntime_getCurrentInstructionSet()
|
/art/patchoat/ |
D | patchoat.cc | 68 GetDalvikCache(GetInstructionSetString(isa), false, &dalvik_cache, in LocationToFilename() 164 const char* isa_name = GetInstructionSetString(isa); in Patch()
|
/art/dex2oat/ |
D | dex2oat.cc | 2183 std::make_pair("imageinstructionset", GetInstructionSetString(instruction_set_))); in PrepareRuntimeOptions() 2409 GetInstructionSetString(isa)) { in StripIsaFrom()
|