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

/art/test/
H A DAndroid.run-test.mk144 define core-image-dependencies
153 ifeq ($(2),no-image)
168 IMAGE_TYPES := picimage no-image multipicimage
171 # Add core image dependencies required for given target - HOST or TARGET,
174 $(foreach image, $(IMAGE_TYPES), \
177 $(call core-image-dependencies,$(target),$(image),$(compiler),$(address_size)))))))
203 core-image-dependencies :=
/art/runtime/base/
H A Dlogging.h56 bool image; member in struct:art::LogVerbosity
/art/runtime/
H A Ddex2oat_environment_test.h68 << "Expected pre-compiled boot image to be at: " << GetSystemImageFile();
98 // Set up the image location.
150 /*out*/std::string* image,
166 return GetDalvikCacheFilename(image_location.c_str(), cache.c_str(), image, error_msg);
169 // Returns the path to an image location whose contents differ from the
170 // image at GetImageLocation(). This is used for testing mismatched
171 // image checksums in the oat_file_assistant_tests.
149 GetCachedImageFile(const std::string& image_location, std::string* image, std::string* error_msg) const argument
H A Ddexopt_test.cc58 // relocated image file.
89 args.push_back("--boot-image=" + GetImageLocation2());
193 std::string image; local
194 if (!GetCachedImageFile(image_location, &image, error_msg)) {
203 argv.push_back("--input-image-location=" + image_location);
204 argv.push_back("--output-image-file=" + image);
213 // Ensure a chunk of memory is reserved for the image space.
215 // right after the image in case of the GSS collector.
233 MemMap::MapAnonymous("image reservatio
[all...]
H A Dparsed_options.cc592 std::string image = GetAndroidRoot(); local
593 image += "/framework/boot.art";
594 args.Set(M::Image, image);
727 UsageMessage(stream, " -X[no]image-dex2oat (Whether to create and use a boot image)\n");
H A Dimage.h73 // header of image files written by ImageWriter, read and validated by Space.
142 // The location that the oat file was expected to be when the image was created. The actual
170 static std::string GetOatLocationFromImageLocation(const std::string& image) { argument
171 return GetLocationFromImageLocation(image, "oat");
174 static std::string GetVdexLocationFromImageLocation(const std::string& image) { argument
175 return GetLocationFromImageLocation(image, "vdex");
192 kClassLoader, // App image only.
276 // App images currently require a boot image, if the size is non zero then it is an app image
305 static std::string GetLocationFromImageLocation(const std::string& image, argument
[all...]
/art/tools/ahat/src/
H A DDocString.java59 * Construct a new DocString initialized with the given image.
61 public static DocString image(URI uri, String alt) { method in class:DocString
/art/patchoat/
H A Dpatchoat.h58 PatchOat(InstructionSet isa, MemMap* image, argument
61 : image_(image), bitmap_(bitmap), heap_(heap),
64 // Was the .art image at image_path made with --compile-pic ?
74 // Was the .oat image at oat_in made with --compile-pic ?
134 LOG(FATAL) << "Did not find object in boot image space " << obj;
155 // Walks through the old image and patches the mmap'd copy of it to the new offset. It does not
176 // A mmap of the image we are patching. This is modified.
178 // The bitmap over the image within the heap we are patching. This is not modified.
/art/compiler/optimizing/
H A Doptimizing_compiler.cc1108 const std::string& image = Runtime::Current()->GetImageLocation(); local
1110 if (android::base::EndsWith(image, "core.art") ||
1111 android::base::EndsWith(image, "core-optimizing.art")) {
1132 // - methods in boot image for on-device non-PIC compilation.
/art/runtime/gc/space/
H A Dimage_space.cc38 #include "image-inl.h"
102 *error_msg = "Failed to generate image because no boot class path specified";
105 // We should clean up so we are more likely to have room for the image.
107 LOG(INFO) << "Pruning dalvik-cache since we are generating an image and will need to recompile";
116 std::string image_option_string("--image=");
128 // Note: we do not generate a fully debuggable boot image so we do not pass the
133 << "We should always be generating an image for the current isa.";
186 // so that the caller knows where to create the image.
235 // Relocate the image at image_location to dest_filename and relocate it by a random amount.
240 // We should clean up so we are more likely to have room for the image
1347 OpenOatFile(const ImageSpace& image, const char* image_path, std::string* error_msg) argument
1721 CreateFromAppImage(const char* image, const OatFile* oat_file, std::string* error_msg) argument
1885 const std::string& image = images[i]; local
[all...]

Completed in 223 milliseconds