Lines Matching refs:unsparse_image_path
96 unsparse_image_path = image_path
98 unsparse_image_path = UnsparseImage(image_path, replace=False)
101 cmd = ["tune2fs", "-l", unsparse_image_path]
103 cmd = ["fsck.f2fs", "-l", unsparse_image_path]
109 os.remove(unsparse_image_path)
120 unsparse_image_path = "unsparse_" + os.path.basename(sparse_image_path)
121 unsparse_image_path = os.path.join(img_dir, unsparse_image_path)
122 if os.path.exists(unsparse_image_path):
124 os.unlink(unsparse_image_path)
126 return unsparse_image_path
127 inflate_command = ["simg2img", sparse_image_path, unsparse_image_path]
131 os.remove(unsparse_image_path)
133 return unsparse_image_path