Home
last modified time | relevance | path

Searched refs:image_location (Results 1 – 10 of 10) sorted by relevance

/art/odrefresh/
Dodr_artifacts_test.cc31 const std::string image_location = GetApexDataBootImage("/system/framework/framework.jar"); in TEST() local
32 EXPECT_TRUE(StartsWith(image_location, GetArtApexData())); in TEST()
35 GetSystemImageFilename(image_location.c_str(), InstructionSet::kArm64); in TEST()
49 const std::string image_location = GetApexDataImage("/system/framework/services.jar"); in TEST() local
50 EXPECT_TRUE(StartsWith(image_location, GetArtApexData())); in TEST()
53 GetSystemImageFilename(image_location.c_str(), InstructionSet::kX86); in TEST()
Dodrefresh.cc479 const std::string image_location = GetSystemServerImagePath(/*on_system=*/false, jar_path); in SystemServerArtifactsExistOnData() local
480 const OdrArtifacts artifacts = OdrArtifacts::ForSystemServer(image_location); in SystemServerArtifactsExistOnData()
711 const std::string image_location = GetSystemServerImagePath(on_system, jar_path); in VerifySystemServerArtifactsAreUpToDate() local
715 if (!on_system && !OS::FileExists(image_location.c_str(), true)) { in VerifySystemServerArtifactsAreUpToDate()
716 LOG(INFO) << "Missing image file: " << QuotePath(image_location); in VerifySystemServerArtifactsAreUpToDate()
721 OdrArtifacts artifacts = OdrArtifacts::ForSystemServer(image_location); in VerifySystemServerArtifactsAreUpToDate()
827 const std::string image_location = in RemoveSystemServerArtifactsFromData() local
829 const OdrArtifacts artifacts = OdrArtifacts::ForSystemServer(image_location); in RemoveSystemServerArtifactsFromData()
854 const std::string image_location = GetBootImageExtensionImage(on_system); in VerifyBootExtensionArtifactsAreUpToDate() local
859 args.emplace_back(Concatenate({"--image=", GetBootImage(), ":", image_location})); in VerifyBootExtensionArtifactsAreUpToDate()
[all …]
/art/runtime/gc/space/
Dimage_space.h127 const std::string& image_location,
212 static bool FindImageFilename(const char* image_location,
236 const std::string& image_location,
255 const std::string& image_location,
289 const char* image_location,
300 const char* image_location,
Dimage_space.cc79 const char* image_location, in ImageSpace() argument
92 image_location_(image_location), in ImageSpace()
118 static bool FindImageFilenameImpl(const char* image_location, in FindImageFilenameImpl() argument
126 std::string system_image_filename(GetSystemImageFilename(image_location, image_isa)); in FindImageFilenameImpl()
135 bool ImageSpace::FindImageFilename(const char* image_location, in FindImageFilename() argument
140 return FindImageFilenameImpl(image_location, in FindImageFilename()
494 const char* image_location, in InitAppImage() argument
502 image_location, in InitAppImage()
591 const char* image_location, in Init() argument
597 CHECK(image_location != nullptr); in Init()
[all …]
Dimage_space_test.cc373 std::string image_location = GetCoreArtLocation(); in SetUpRuntimeOptions() local
376 image_location = missing_image_base_->GetFilename() + ".art"; in SetUpRuntimeOptions()
378 options->emplace_back(android::base::StringPrintf("-Ximage:%s", image_location.c_str()), in SetUpRuntimeOptions()
/art/runtime/
Ddexopt_test.cc137 std::string image_location = GetImageLocation(); in GenerateOatForTest() local
176 image_location, in GenerateOatForTest()
/art/tools/
Dart187 local image_location="$image_location_dir/$image_location_name"
188 echo "$image_location"
/art/dex2oat/
Ddex2oat_image_test.cc419 auto load = [&](const std::string& image_location) { in TEST_F() argument
425 image_location, in TEST_F()
433 auto silent_load = [&](const std::string& image_location) { in TEST_F() argument
435 return load(image_location); in TEST_F()
Ddex2oat_test.cc1100 const std::string image_location = spaces[0]->GetImageLocation(); in TEST_F() local
/art/imgdiag/
Dimgdiag.cc1286 bool Dump(const ImageHeader& image_header, const std::string& image_location) in Dump() argument
1289 os << "IMAGE LOCATION: " << image_location << "\n\n"; in Dump()
1300 ret = DumpImageDiff(image_header, image_location); in Dump()
1310 bool DumpImageDiff(const ImageHeader& image_header, const std::string& image_location) in DumpImageDiff() argument
1312 return DumpImageDiffMap(image_header, image_location); in DumpImageDiff()
1441 bool DumpImageDiffMap(const ImageHeader& image_header, const std::string& image_location) in DumpImageDiffMap() argument
1446 std::string image_location_base_name = GetImageLocationBaseName(image_location); in DumpImageDiffMap()
1782 static std::string GetImageLocationBaseName(const std::string& image_location) { in GetImageLocationBaseName() argument
1783 return BaseName(std::string(image_location)); in GetImageLocationBaseName()