| /art/runtime/arch/ |
| instruction_set_test.cc | 36 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)); 57 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA))) [all...] |
| instruction_set_features_test.cc | 45 std::string key = StringPrintf("dalvik.vm.isa.%s.variant", GetInstructionSetString(kRuntimeISA)); 73 GetInstructionSetString(kRuntimeISA)); 78 GetInstructionSetString(kRuntimeISA));
|
| instruction_set.cc | 44 const char* GetInstructionSetString(InstructionSet isa) {
|
| instruction_set.h | 86 const char* GetInstructionSetString(InstructionSet isa);
|
| /art/runtime/ |
| dex2oat_environment_test.h | 62 odex_dir_ = odex_oat_dir_ + "/" + std::string(GetInstructionSetString(kRuntimeISA)); 146 return GetImageDirectory() + "/" + GetInstructionSetString(kRuntimeISA) 157 GetDalvikCache(GetInstructionSetString(kRuntimeISA),
|
| native_bridge_art_interface.cc | 107 android::PreInitializeNativeBridge(dir.c_str(), GetInstructionSetString(kRuntimeISA));
|
| dexopt_test.cc | 53 std::string dalvik_cache = GetDalvikCache(GetInstructionSetString(kRuntimeISA)); 205 argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(kRuntimeISA)));
|
| signal_catcher.cc | 189 os << "ABI: '" << GetInstructionSetString(runtime->GetInstructionSet()) << "'\n";
|
| oat_file_assistant.cc | 181 std::string lock_file_name = dex_location_ + "." + GetInstructionSetString(isa_) + ".flock"; 574 dir += "/" + std::string(GetInstructionSetString(isa)); 838 std::string cache_dir = GetDalvikCache(GetInstructionSetString(isa)); [all...] |
| utils.cc | 855 filename->insert(pos + 1, GetInstructionSetString(isa));
|
| parsed_options.cc | 497 GetInstructionSetString(kRuntimeISA)); [all...] |
| runtime.cc | 780 GetInstructionSetString(kRuntimeISA)); [all...] |
| /art/runtime/gc/space/ |
| image_space_fs.h | 97 impl::DeleteDirectoryContents(GetDalvikCache(GetInstructionSetString(isa)), false); 110 const std::string isa_subdir = GetDalvikCache(GetInstructionSetString(isa));
|
| image_space.cc | 179 GetDalvikCache(GetInstructionSetString(image_isa), 257 instruction_set_arg += GetInstructionSetString(isa); 378 const std::string dalvik_cache = GetDalvikCache(GetInstructionSetString(isa)); [all...] |
| /art/cmdline/ |
| cmdline.h | 58 GetDalvikCache(GetInstructionSetString(isa), false, &dalvik_cache, 107 reinterpret_cast<const void*>(GetInstructionSetString(instruction_set)))); 208 GetInstructionSetString(kRuntimeISA));
|
| /art/dexoptanalyzer/ |
| dexoptanalyzer.cc | 192 const void* isa_opt = reinterpret_cast<const void*>(GetInstructionSetString(isa_));
|
| dexoptanalyzer_test.cc | 44 argv_str.push_back("--isa=" + std::string(GetInstructionSetString(kRuntimeISA)));
|
| /art/oatdump/ |
| oatdump_test.h | 115 GetInstructionSetString(kRuntimeISA)));
|
| /art/runtime/native/ |
| dalvik_system_VMRuntime.cc | 199 const char* isa_string = GetInstructionSetString(isa); 623 return env->NewStringUTF(GetInstructionSetString(kRuntimeISA));
|
| /art/patchoat/ |
| patchoat.cc | 133 const char* isa_name = GetInstructionSetString(isa); [all...] |
| /art/dex2oat/ |
| dex2oat.cc | [all...] |