Searched refs:image_path (Results 1 – 3 of 3) sorted by relevance
/art/odrefresh/ |
D | odr_artifacts.h | 31 static OdrArtifacts ForBootImage(const std::string& image_path) { in ForBootImage() argument 32 return OdrArtifacts(image_path, /*image_kind=*/"image", /*aot_extension=*/"oat"); in ForBootImage() 35 static OdrArtifacts ForSystemServer(const std::string& image_path) { in ForSystemServer() argument 36 return OdrArtifacts(image_path, /*image_kind=*/"app-image", /*aot_extension=*/"odex"); in ForSystemServer() 45 OdrArtifacts(const std::string& image_path, const char* image_kind, const char* aot_extension) in OdrArtifacts() argument 46 : image_path_{image_path}, in OdrArtifacts() 48 oat_path_{ReplaceFileExtension(image_path, aot_extension)}, 49 vdex_path_{ReplaceFileExtension(image_path, "vdex")} {}
|
D | odrefresh.cc | 557 std::string image_path = ART_FORMAT("{}/{}", artifact_dir, basename); in AddCompiledBootClasspathFdsIfAny() local 558 image_path = GetSystemImageFilename(image_path.c_str(), isa); in AddCompiledBootClasspathFdsIfAny() 559 std::unique_ptr<File> image_file(OS::OpenFileForReading(image_path.c_str())); in AddCompiledBootClasspathFdsIfAny() 567 return ErrnoErrorf("Failed to open boot image file '{}'", image_path); in AddCompiledBootClasspathFdsIfAny() 570 std::string oat_path = ReplaceFileExtension(image_path, "oat"); in AddCompiledBootClasspathFdsIfAny() 582 std::string vdex_path = ReplaceFileExtension(image_path, "vdex"); in AddCompiledBootClasspathFdsIfAny()
|
/art/tools/bisection_search/ |
D | bisection_search.py | 362 image_path = (GetEnvVariableOrError('ANDROID_HOST_OUT') + 365 image_path = args.image 366 base_cmd += ['-Ximage:{0}'.format(image_path)]
|