Searched refs:write_from (Results 1 – 7 of 7) sorted by relevance
/external/crosvm/fuse/src/ |
D | filesystem.rs | 240 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()
|
D | worker.rs | 98 fn write_from(&mut self, f: &mut File, count: usize, off: u64) -> io::Result<usize> { in write_from() method
|
/external/crosvm/devices/src/virtio/ |
D | rng.rs | 52 .and_then(|mut writer| writer.write_from(random_file, std::usize::MAX)) in process_queue()
|
D | descriptor_utils.rs | 573 pub fn write_from<F: FileReadWriteVolatile>( in write_from() method 606 match self.write_from(&mut src, count) { in write_all_from()
|
D | net.rs | 181 match writer.write_from(&mut self.tap, writer.available_bytes()) { in process_rx()
|
/external/crosvm/devices/src/virtio/fs/ |
D | worker.rs | 42 fn write_from(&mut self, f: &mut File, count: usize, off: u64) -> io::Result<usize> { in write_from() method
|
D | passthrough.rs | 1395 w.write_from(&mut file.0, size as usize, offset) in read() 1400 w.write_from(&mut f, size as usize, offset) in read()
|