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

  /art/compiler/
image_test.cc 51 std::string image_filename(GetSystemImageFilename(image_location.GetFilename().c_str(),
53 size_t pos = image_filename.rfind('/');
54 CHECK_NE(pos, std::string::npos) << image_filename;
55 std::string image_dir(image_filename, 0, pos);
58 ScratchFile image_file(OS::CreateEmptyFile(image_filename.c_str()));
60 std::string oat_filename(image_filename, 0, image_filename.size() - 3);
image_writer.cc 75 bool ImageWriter::Write(const std::string& image_filename,
80 CHECK(!image_filename.empty());
161 std::unique_ptr<File> image_file(OS::CreateEmptyFile(image_filename.c_str()));
164 LOG(ERROR) << "Failed to open image file " << image_filename;
168 PLOG(ERROR) << "Failed to make image file world readable: " << image_filename;
176 PLOG(ERROR) << "Failed to write image file " << image_filename;
186 PLOG(ERROR) << "Failed to write image file " << image_filename;
192 PLOG(ERROR) << "Failed to flush and close image file " << image_filename;
    [all...]
image_writer.h 54 bool Write(const std::string& image_filename,
  /art/runtime/gc/space/
image_space.cc 43 ImageSpace::ImageSpace(const std::string& image_filename, const char* image_location,
45 : MemMapSpace(image_filename, mem_map, mem_map->Begin(), mem_map->End(), mem_map->End(),
142 static bool GenerateImage(const std::string& image_filename, InstructionSet image_isa,
163 image_option_string += image_filename;
171 oat_file_option_string += ImageHeader::GetOatLocationFromImageLocation(image_filename);
227 // *image_filename = /data/dalvik-cache/<image_isa>/boot.art
459 const std::string* image_filename; local
472 image_filename = &cache_filename;
494 image_filename = &cache_filename;
510 image_filename = &cache_filename
    [all...]
image_space.h 131 static ImageSpace* Init(const char* image_filename, const char* image_location,
  /build/tools/releasetools/
build_image.py 371 image_filename = os.path.basename(out_file)
373 if image_filename == "system.img":
375 elif image_filename == "userdata.img":
377 elif image_filename == "cache.img":
379 elif image_filename == "vendor.img":
381 elif image_filename == "oem.img":
384 print >> sys.stderr, "error: unknown image file name ", image_filename
  /external/chromium_org/chrome/browser/ui/app_list/search/people/
people_result.cc 52 std::string image_filename = url.ExtractFileName(); local
53 if (image_filename.empty())
56 return url.Resolve(kImageSizePath + image_filename);
  /art/patchoat/
patchoat.cc 93 // *image_filename = /data/dalvik-cache/<image_isa>/boot.art
122 std::string image_filename; local
123 if (!LocationToFilename(image_location, isa, &image_filename)) {
127 std::unique_ptr<File> input_image(OS::OpenFileForReading(image_filename.c_str()));
129 LOG(ERROR) << "unable to open input image file at " << image_filename
219 std::string image_filename; local
220 if (!LocationToFilename(image_location, isa, &image_filename)) {
224 std::unique_ptr<File> input_image(OS::OpenFileForReading(image_filename.c_str()));
226 LOG(ERROR) << "unable to open input image file at " << image_filename
    [all...]
  /art/dex2oat/
dex2oat.cc 465 bool CreateImageFile(const std::string& image_filename,
475 if (!image_writer.Write(image_filename, image_base, oat_filename, oat_location,
477 LOG(ERROR) << "Failed to create image file " << image_filename;
865 std::string image_filename; local
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
picasa_file_util_unittest.cc 75 std::string image_filename = base::StringPrintf("img%05d.jpg", i); local
76 image_filenames_.insert(image_filename);
78 base::FilePath path = folder_dir_.path().AppendASCII(image_filename);
  /art/oatdump/
oatdump.cc 1039 std::string image_filename = image_space_.GetImageFilename(); local
    [all...]

Completed in 606 milliseconds