HomeSort by relevance Sort by last modified time
    Searched refs:GetInstructionSetString (Results 1 - 22 of 22) sorted by null

  /art/runtime/arch/
instruction_set_test.cc 36 TEST(InstructionSetTest, GetInstructionSetString) {
37 EXPECT_STREQ("arm", GetInstructionSetString(InstructionSet::kArm));
38 EXPECT_STREQ("arm", GetInstructionSetString(InstructionSet::kThumb2));
39 EXPECT_STREQ("arm64", GetInstructionSetString(InstructionSet::kArm64));
40 EXPECT_STREQ("x86", GetInstructionSetString(InstructionSet::kX86));
41 EXPECT_STREQ("x86_64", GetInstructionSetString(InstructionSet::kX86_64));
42 EXPECT_STREQ("mips", GetInstructionSetString(InstructionSet::kMips));
43 EXPECT_STREQ("mips64", GetInstructionSetString(InstructionSet::kMips64));
44 EXPECT_STREQ("none", GetInstructionSetString(InstructionSet::kNone));
63 EXPECT_EQ(kRuntimeISA, GetInstructionSetFromString(GetInstructionSetString(kRuntimeISA)))
    [all...]
instruction_set_features_test.cc 44 std::string key = StringPrintf("dalvik.vm.isa.%s.variant", GetInstructionSetString(kRuntimeISA));
72 GetInstructionSetString(kRuntimeISA));
77 GetInstructionSetString(kRuntimeISA));
instruction_set.cc 44 const char* GetInstructionSetString(InstructionSet isa) {
instruction_set.h 87 const char* GetInstructionSetString(InstructionSet isa);
  /art/runtime/gc/space/
image_space_fs.h 98 impl::DeleteDirectoryContents(GetDalvikCache(GetInstructionSetString(isa)), false);
111 const std::string isa_subdir = GetDalvikCache(GetInstructionSetString(isa));
image_space.cc 183 GetDalvikCache(GetInstructionSetString(image_isa),
261 instruction_set_arg += GetInstructionSetString(isa);
293 instruction_set_arg += GetInstructionSetString(isa);
412 const std::string dalvik_cache = GetDalvikCache(GetInstructionSetString(isa));
    [all...]
  /art/cmdline/
cmdline.h 60 GetDalvikCache(GetInstructionSetString(isa), false, &dalvik_cache,
110 reinterpret_cast<const void*>(GetInstructionSetString(instruction_set))));
211 GetInstructionSetString(kRuntimeISA));
237 LOG(WARNING) << "No instruction set given, assuming " << GetInstructionSetString(kRuntimeISA);
  /art/runtime/
dex2oat_environment_test.h 66 odex_dir_ = odex_oat_dir_ + "/" + std::string(GetInstructionSetString(kRuntimeISA));
159 return GetImageDirectory() + "/" + GetInstructionSetString(kRuntimeISA)
dexopt_test.cc 55 std::string dalvik_cache = GetDalvikCache(GetInstructionSetString(kRuntimeISA));
206 GetDalvikCache(GetInstructionSetString(kRuntimeISA),
224 argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(kRuntimeISA)));
native_bridge_art_interface.cc 107 android::PreInitializeNativeBridge(dir.c_str(), GetInstructionSetString(kRuntimeISA));
signal_catcher.cc 192 os << "ABI: '" << GetInstructionSetString(runtime->GetInstructionSet()) << "'\n";
oat_file_assistant.cc 199 std::string lock_file_name = dex_location_ + "." + GetInstructionSetString(isa_) + ".flock";
600 dir += "/" + std::string(GetInstructionSetString(isa));
869 std::string cache_dir = GetDalvikCache(GetInstructionSetString(isa));
    [all...]
parsed_options.cc 515 GetInstructionSetString(kRuntimeISA));
    [all...]
runtime.cc 821 GetInstructionSetString(kRuntimeISA));
    [all...]
  /art/oatdump/
oatdump_test.h 127 "--instruction-set=" + std::string(GetInstructionSetString(kRuntimeISA)),
171 GetInstructionSetString(kRuntimeISA)));
178 GetInstructionSetString(kRuntimeISA)));
  /art/patchoat/
patchoat_test.cc 134 argv.push_back(StringPrintf("--instruction-set=%s", GetInstructionSetString(kRuntimeISA)));
373 dex2oat_orig_dir + "/" + GetInstructionSetString(kRuntimeISA);
464 dex2oat_orig_dir_ + "/" + GetInstructionSetString(kRuntimeISA);
patchoat.cc 139 isa_name_ = GetInstructionSetString(isa);
    [all...]
  /art/dexoptanalyzer/
dexoptanalyzer.cc 226 const void* isa_opt = reinterpret_cast<const void*>(GetInstructionSetString(isa_));
dexoptanalyzer_test.cc 44 argv_str.push_back("--isa=" + std::string(GetInstructionSetString(kRuntimeISA)));
  /art/runtime/base/
file_utils.cc 297 filename->insert(pos + 1, GetInstructionSetString(isa));
  /art/runtime/native/
dalvik_system_VMRuntime.cc 243 const char* isa_string = GetInstructionSetString(isa);
664 return env->NewStringUTF(GetInstructionSetString(kRuntimeISA));
  /art/dex2oat/
dex2oat.cc     [all...]

Completed in 794 milliseconds