Home | History | Annotate | Download | only in virt

Lines Matching refs:image_filename

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):
260 os.unlink(image_filename)
280 image_filename = get_image_filename(params, root_dir)
281 logging.debug("Checking image file %s", image_filename)
285 if os.path.exists(image_filename) and image_is_qcow2:
300 utils.system("%s info %s" % (qemu_img_cmd, image_filename))
303 image_filename)
306 (qemu_img_cmd, image_filename),
323 raise VMImageCheckError(image_filename)
332 if not os.path.exists(image_filename):
334 image_filename)
337 image_filename)