Lines Matching refs:unsparse_image_path
95 unsparse_image_path = image_path
97 unsparse_image_path = UnsparseImage(image_path, replace=False)
100 cmd = ["tune2fs", "-l", unsparse_image_path]
102 cmd = ["fsck.f2fs", "-l", unsparse_image_path]
108 os.remove(unsparse_image_path)
119 unsparse_image_path = "unsparse_" + os.path.basename(sparse_image_path)
120 unsparse_image_path = os.path.join(img_dir, unsparse_image_path)
121 if os.path.exists(unsparse_image_path):
123 os.unlink(unsparse_image_path)
125 return unsparse_image_path
126 inflate_command = ["simg2img", sparse_image_path, unsparse_image_path]
130 os.remove(unsparse_image_path)
132 return unsparse_image_path