Home
last modified time | relevance | path

Searched refs:AsyncDisk (Results 1 – 3 of 3) sorted by relevance

/external/crosvm/disk/src/
Ddisk.rs110 fn to_async_disk(self: Box<Self>, ex: &Executor) -> Result<Box<dyn AsyncDisk>>; in to_async_disk() argument
114 fn to_async_disk(self: Box<Self>, ex: &Executor) -> Result<Box<dyn AsyncDisk>> { in to_async_disk() argument
353 pub trait AsyncDisk: DiskGetLen + FileSetLen + FileAllocate { trait
418 impl AsyncDisk for SingleFileDisk {
/external/crosvm/devices/src/virtio/
Ddescriptor_utils.rs20 use disk::AsyncDisk;
395 pub async fn read_to_at_fut<F: AsyncDisk + ?Sized>( in read_to_at_fut()
411 pub async fn read_exact_to_at_fut<F: AsyncDisk + ?Sized>( in read_exact_to_at_fut()
650 pub async fn write_from_at_fut<F: AsyncDisk + ?Sized>( in write_from_at_fut()
664 pub async fn write_all_from_at_fut<F: AsyncDisk + ?Sized>( in write_all_from_at_fut()
Dblock_async.rs31 use disk::{AsyncDisk, ToAsyncDisk};
237 disk_image: Box<dyn AsyncDisk>,