Searched defs:image (Results 1 - 10 of 10) sorted by relevance

/art/runtime/
H A Ddex2oat_environment_test.h58 << "Expected pre-compiled boot image to be at: " << GetSystemImageFile();
87 // Set up the image location.
138 bool GetCachedImageFile(/*out*/std::string* image, std::string* error_msg) const { argument
140 return GetDalvikCacheFilename(GetImageLocation().c_str(), cache.c_str(), image, error_msg);
H A Dparsed_options.cc581 std::string image = GetAndroidRoot(); local
582 image += "/framework/boot.art";
583 args.Set(M::Image, image);
719 UsageMessage(stream, " -X[no]image-dex2oat (Whether to create and use a boot image)\n");
H A Doat_file_assistant_test.cc49 // Pre-Relocate the image to a known non-zero offset so we don't have to
50 // deal with the runtime randomly relocating the image by 0 and messing up
53 std::string image; local
54 if (!GetCachedImageFile(&image, error_msg)) {
63 argv.push_back("--input-image-location=" + GetImageLocation());
64 argv.push_back("--output-image-file=" + image);
89 // relocated image file.
157 // Reserve memory around where the image will be loaded so other memory
158 // won't conflict when it comes time to load the image
[all...]
H A Dimage.h72 // header of image files written by ImageWriter, read and validated by Space.
141 // The location that the oat file was expected to be when the image was created. The actual
167 static std::string GetOatLocationFromImageLocation(const std::string& image) { argument
168 std::string oat_filename = image;
269 // App images currently require a boot image, if the size is non zero then it is an app image
299 // Required base address for mapping the image.
311 // Required oat address expected by image Method::GetCode() pointers.
314 // End of oat data address range for this image file.
321 // Boot image begi
[all...]
/art/tools/ahat/src/
H A DDocString.java60 * Construct a new DocString initialized with the given image.
62 public static DocString image(URI uri, String alt) { method in class:DocString
/art/patchoat/
H A Dpatchoat.h51 // Patch only the image (art file)
55 // Patch both the image and the oat file
70 PatchOat(InstructionSet isa, MemMap* image, gc::accounting::ContinuousSpaceBitmap* bitmap, argument
72 : image_(image), bitmap_(bitmap), heap_(heap),
74 PatchOat(InstructionSet isa, ElfFile* oat_file, MemMap* image, argument
77 : oat_file_(oat_file), image_(image), bitmap_(bitmap), heap_(heap),
80 // Was the .art image at image_path made with --compile-pic ?
90 // Was the .oat image at oat_in made with --compile-pic ?
160 LOG(FATAL) << "Did not find object in boot image space " << obj;
190 // Walks through the old image an
[all...]
/art/runtime/base/
H A Dlogging.h58 bool image; member in struct:art::LogVerbosity
/art/compiler/optimizing/
H A Doptimizing_compiler.cc860 const std::string& image = Runtime::Current()->GetImageLocation(); local
862 if (EndsWith(image, "core.art") || EndsWith(image, "core-optimizing.art")) {
/art/runtime/gc/collector/
H A Dconcurrent_copying.cc27 #include "image-inl.h"
142 const char* bitmap_name = space->IsImageSpace() ? "cc image space bitmap" :
144 // TODO: try avoiding using bitmaps for image/zygote to save space.
361 // Mark the image root. The WB-based collectors do not need to
362 // scan the image objects from roots by relying on the card table,
367 gc::space::ImageSpace* image = space->AsImageSpace(); local
368 if (image != nullptr) {
369 mirror::ObjectArray<mirror::Object>* image_root = image->GetImageHeader().GetImageRoots();
371 CHECK_EQ(image_root, marked_image_root) << "An image object does not move";
1510 LOG(INFO) << "holder is in an immune image o
[all...]
/art/runtime/gc/space/
H A Dimage_space.cc32 #include "image-inl.h"
87 *error_msg = "Failed to generate image because no boot class path specified";
90 // We should clean up so we are more likely to have room for the image.
92 LOG(INFO) << "Pruning dalvik-cache since we are generating an image and will need to recompile";
101 std::string image_option_string("--image=");
113 // Note: we do not generate a fully debuggable boot image so we do not pass the
118 << "We should always be generating an image for the current isa.";
166 // so that the caller knows where to create the image.
192 // Relocate the image at image_location to dest_filename and relocate it by a random amount.
195 // We should clean up so we are more likely to have room for the image
1591 const std::string& image = images[i]; local
1598 CreateFromAppImage(const char* image, const OatFile* oat_file, std::string* error_msg) argument
[all...]

Completed in 138 milliseconds