/art/runtime/gc/space/ |
image_space.h | 60 static ImageHeader* ReadImageHeaderOrDie(const char* image_location, 66 static ImageHeader* ReadImageHeader(const char* image_location, 117 // requested image_location, or the filename where a new image 122 static bool FindImageFilename(const char* image_location, 166 const char* image_location, 185 const char* image_location,
|
image_space.cc | 48 const char* image_location, 59 image_location_(image_location) { 140 bool ImageSpace::FindImageFilename(const char* image_location, 150 // image_location = /system/framework/boot.art 152 std::string system_image_filename(GetSystemImageFilename(image_location, image_isa)); 168 // image_location = /system/framework/boot.art 171 if (!GetDalvikCacheFilename(image_location, dalvik_cache.c_str(), cache_filename, &error_msg)) { 192 // Relocate the image at image_location to dest_filename and relocate it by a random amount. 193 static bool RelocateImage(const char* image_location, const char* dest_filename, 204 input_image_location_arg += image_location; [all...] |
/art/dex2oat/ |
dex2oat_test.cc | 112 std::string image_location = image_spaces[0]->GetImageLocation(); local 145 argv.push_back("--boot-image=" + image_location);
|
/art/runtime/ |
oat_file_assistant.cc | 741 std::string image_location = ImageLocation(); local 742 if (image_location.empty()) { 778 argv.push_back("--boot-image=" + image_location); [all...] |
runtime.cc | 808 static bool OpenDexFilesFromImage(const std::string& image_location, 815 image_locations.push_back(image_location); 901 const std::string& image_location, 905 if (!image_location.empty() && OpenDexFilesFromImage(image_location, dex_files, &failure_count)) { [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/ec2/ |
test_connection.py | [all...] |
/art/patchoat/ |
patchoat.cc | 57 // image_location = /system/framework/boot.art 76 // image_location = /system/framework/boot.art 153 bool PatchOat::Patch(const std::string& image_location, 159 CHECK(!image_location.empty()) << "image file must have a filename."; 170 std::string img = "-Ximage:" + image_location; [all...] |
/art/imgdiag/ |
imgdiag.cc | 53 const std::string& image_location, 58 image_location_(image_location), [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/ |
connection.py | 267 def register_image(self, name=None, description=None, image_location=None, 283 :type image_location: string 284 :param image_location: Full path to your AMI manifest in 342 if image_location: 343 params['ImageLocation'] = image_location [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/manage/ |
server.py | 125 self.image_id = self.server.ec2.register_image(name=prefix, image_location='%s/%s.manifest.xml' % (bucket, prefix))
|