Home
last modified time | relevance | path

Searched refs:write_from (Results 1 – 7 of 7) sorted by relevance

/external/crosvm/fuse/src/
Dfilesystem.rs240 fn write_from(&mut self, f: &mut File, count: usize, off: u64) -> io::Result<usize>; in write_from() method
261 match self.write_from(f, count, off) { in write_all_from()
292 match self.write_from(f, ::std::usize::MAX, off) { in copy_to_end()
306 fn write_from(&mut self, f: &mut File, count: usize, off: u64) -> io::Result<usize> { in write_from() method
307 (**self).write_from(f, count, off) in write_from()
Dworker.rs98 fn write_from(&mut self, f: &mut File, count: usize, off: u64) -> io::Result<usize> { in write_from() method
/external/crosvm/devices/src/virtio/
Drng.rs52 .and_then(|mut writer| writer.write_from(random_file, std::usize::MAX)) in process_queue()
Ddescriptor_utils.rs573 pub fn write_from<F: FileReadWriteVolatile>( in write_from() method
606 match self.write_from(&mut src, count) { in write_all_from()
Dnet.rs181 match writer.write_from(&mut self.tap, writer.available_bytes()) { in process_rx()
/external/crosvm/devices/src/virtio/fs/
Dworker.rs42 fn write_from(&mut self, f: &mut File, count: usize, off: u64) -> io::Result<usize> { in write_from() method
Dpassthrough.rs1395 w.write_from(&mut file.0, size as usize, offset) in read()
1400 w.write_from(&mut f, size as usize, offset) in read()