Lines Matching refs:DADKExecContext
3 use crate::context::DADKExecContext;
8 pub(super) fn create(ctx: &DADKExecContext, skip_if_exists: bool) -> Result<()> { in create() argument
40 pub(super) fn delete(ctx: &DADKExecContext, skip_if_not_exists: bool) -> Result<()> { in delete() argument
58 pub fn mount(ctx: &DADKExecContext) -> Result<()> { in mount()
84 ctx: &DADKExecContext, in mount_partitioned_image() argument
106 _ctx: &DADKExecContext, in mount_unpartitioned_image() argument
124 pub fn umount(ctx: &DADKExecContext) -> Result<()> { in umount()
195 fn create_partitioned_image(ctx: &DADKExecContext, disk_image_path: &PathBuf) -> Result<()> { in create_partitioned_image() argument
214 fn create_unpartitioned_image(ctx: &DADKExecContext, disk_image_path: &PathBuf) -> Result<()> { in create_unpartitioned_image() argument
247 pub fn check_disk_image_exists(ctx: &DADKExecContext) -> Result<()> { in check_disk_image_exists()
257 pub fn show_mount_point(ctx: &DADKExecContext) -> Result<()> { in show_mount_point()
263 pub fn show_loop_device(ctx: &DADKExecContext) -> Result<()> { in show_loop_device()