(root: &Path, image_identity: &str)
| 4275 | } |
| 4276 | |
| 4277 | fn image_cache_dir(root: &Path, image_identity: &str) -> PathBuf { |
| 4278 | image_cache_root_dir(root).join(sanitize_image_identity(image_identity)) |
| 4279 | } |
| 4280 | |
| 4281 | fn image_cache_rootfs_image(root: &Path, image_identity: &str) -> PathBuf { |
| 4282 | image_cache_dir(root, image_identity).join(IMAGE_CACHE_ROOTFS_IMAGE) |
no test coverage detected