Searched refs:image_filename (Results 1 - 4 of 4) sorted by relevance

/art/dex2oat/
H A Ddex2oat.cc297 bool CreateImageFile(const std::string& image_filename,
307 if (!image_writer.Write(image_filename, image_base, oat_filename, oat_location)) {
308 LOG(ERROR) << "Failed to create image file " << image_filename;
585 std::string image_filename; local
653 image_filename = option.substr(strlen("--image=")).data();
720 if (oat_fd != -1 && !image_filename.empty()) {
739 bool image = (!image_filename.empty());
1020 bool image_creation_success = dex2oat->CreateImageFile(image_filename,
1028 VLOG(compiler) << "Image written successfully: " << image_filename;
/art/compiler/
H A Dimage_writer.cc67 bool ImageWriter::Write(const std::string& image_filename, argument
71 CHECK(!image_filename.empty());
144 UniquePtr<File> image_file(OS::CreateEmptyFile(image_filename.c_str()));
147 LOG(ERROR) << "Failed to open image file " << image_filename;
151 PLOG(ERROR) << "Failed to make image file world readable: " << image_filename;
158 PLOG(ERROR) << "Failed to write image file " << image_filename;
167 PLOG(ERROR) << "Failed to write image file " << image_filename;
H A Dimage_writer.h48 bool Write(const std::string& image_filename,
/art/oatdump/
H A Doatdump.cc665 explicit ImageDumper(std::ostream* os, const std::string& image_filename, argument
668 : os_(os), image_filename_(image_filename), host_prefix_(host_prefix),
1364 const char* image_filename = NULL; local
1376 image_filename = option.substr(strlen("--image=")).data();
1395 if (image_filename == NULL && oat_filename == NULL) {
1400 if (image_filename != NULL && oat_filename != NULL) {
1440 if (image_filename != NULL) {
1442 image_option += image_filename;
1465 fprintf(stderr, "Invalid image header %s\n", image_filename);
1468 ImageDumper image_dumper(os, image_filename, *host_prefi
[all...]

Completed in 2029 milliseconds