Lines Matching refs:is_sparse
84 def sparse_img2simg(is_sparse: str, device: str):
86 if "sparse" in is_sparse:
92 def mk_system_img(mkfs_tools: str, mk_configs: str, device: str, src_dir: str, is_sparse: str):
97 sparse_img2simg(is_sparse, device)
102 def mk_ramdisk_img(mkfs_tools: str, mk_configs: str, device: str, src_dir: str, is_sparse: str):
111 def mk_other_img(mkfs_tools: str, mk_configs: str, device: str, src_dir: str, is_sparse: str):
115 sparse_img2simg(is_sparse, device)
130 is_sparse = args[3]
134 mk_system_img(mkfs_tools, mk_configs, device, src_dir, is_sparse)
136 mk_ramdisk_img(mkfs_tools, mk_configs, device, src_dir, is_sparse)
140 mk_ramdisk_img(mkfs_tools, mk_configs, device, src_dir, is_sparse)
142 mk_other_img(mkfs_tools, mk_configs, device, src_dir, is_sparse)