/external/autotest/client/virt/ |
virt_vm.py | 206 image_filename = "%s.%s" % (image_name, image_format) 207 image_filename = virt_utils.get_path(root_dir, image_filename) 208 return image_filename 236 image_filename = get_image_filename(params, root_dir) 237 qemu_img_cmd += " %s" % image_filename 243 return image_filename 257 image_filename = get_image_filename(params, root_dir) 258 logging.debug("Removing image file %s", image_filename) 259 if os.path.exists(image_filename) [all...] |
virt_env_process.py | 27 image_filename = virt_vm.get_image_filename(params, test.bindir) 35 os.path.exists(image_filename)):
|
/external/autotest/client/site_tests/firmware_TouchMTB/ |
report_html.py | 110 def insert_gesture(self, glog, image, image_filename): 118 filename=image_filename, 168 self.image_filename='' 171 return [self.glog, self.encoded_image, self.image_filename] 196 self.image_filename = filename
|
/external/autotest/client/tests/kvm/tests/ |
pci_hotplug.py | 69 image_filename = virt_vm.get_image_filename(image_params, 72 (image_filename, tested_model)) 92 image_filename = virt_vm.get_image_filename(image_params, 115 (image_filename, driver_id, image_format)) 119 (image_filename, image_format, driver_id))
|
/art/runtime/gc/space/ |
image_space.cc | 47 ImageSpace::ImageSpace(const std::string& image_filename, 52 : MemMapSpace(image_filename, 81 static bool GenerateImage(const std::string& image_filename, InstructionSet image_isa, 102 image_option_string += image_filename; 110 oat_file_option_string += ImageHeader::GetOatLocationFromImageLocation(image_filename); 169 // *image_filename = /data/dalvik-cache/<image_isa>/boot.art 395 const std::string* image_filename; local 408 image_filename = &cache_filename; 441 image_filename = &cache_filename; 457 image_filename = &cache_filename 1278 image_filename, local [all...] |
image_space.h | 161 static ImageSpace* Init(const char* image_filename,
|
/art/compiler/ |
image_test.cc | 67 std::string image_filename(GetSystemImageFilename(image_location.GetFilename().c_str(), 69 size_t pos = image_filename.rfind('/'); 70 CHECK_NE(pos, std::string::npos) << image_filename; 71 std::string image_dir(image_filename, 0, pos); 74 ScratchFile image_file(OS::CreateEmptyFile(image_filename.c_str())); 76 std::string oat_filename(image_filename, 0, image_filename.size() - 3);
|
image_writer.cc | 192 const char* image_filename = image_filenames[i]; local 196 if (strlen(image_filename) == 0u) { 204 LOG(ERROR) << "image fd " << image_fd << " name " << image_filename; local 207 image_file.reset(OS::CreateEmptyFile(image_filename)); 211 LOG(ERROR) << "Failed to open image file " << image_filename; 216 PLOG(ERROR) << "Failed to make image file world readable: " << image_filename; 286 PLOG(ERROR) << "Failed to write image file data " << image_filename; 303 PLOG(ERROR) << "Failed to write image file " << image_filename; 310 PLOG(ERROR) << "Failed to flush image file " << image_filename << " with result " << err; 322 PLOG(ERROR) << "Failed to write image file header " << image_filename; [all...] |
/build/tools/releasetools/ |
build_image.py | 630 image_filename = os.path.basename(out_file) 632 if image_filename == "system.img": 634 elif image_filename == "system_other.img": 636 elif image_filename == "userdata.img": 638 elif image_filename == "cache.img": 640 elif image_filename == "vendor.img": 642 elif image_filename == "oem.img": 645 print >> sys.stderr, "error: unknown image file name ", image_filename
|
/external/ImageMagick/MagickCore/ |
constitute.c | 1071 image_filename[MagickPathExtent]; local [all...] |
/external/vboot_reference/utility/ |
bmpblk_utility.cc | 221 string image_name, image_filename; local 233 image_filename = (char*)event.data.scalar.value; 236 config_.images_map[image_name].filename = image_filename;
|
/art/dex2oat/ |
dex2oat.cc | 1976 std::string image_filename = image_filenames_[i]; local [all...] |
/art/oatdump/ |
oatdump.cc | 1366 std::string image_filename = image_space_.GetImageFilename(); local [all...] |