Searched refs:write_all (Results 1 – 4 of 4) sorted by relevance
/qemu/rust/qemu-api/src/ |
H A D | chardev.rs | 59 fn write_all(&mut self, buf: &[u8]) -> io::Result<()> { in write_all() method 241 pub fn write_all(&self, buf: &[u8]) -> io::Result<()> { in write_all() method
|
/qemu/chardev/ |
H A D | char.c | 113 int *offset, bool write_all) in qemu_chr_write_buffer() argument 123 if (res < 0 && errno == EAGAIN && write_all) { in qemu_chr_write_buffer() 137 if (!write_all) { in qemu_chr_write_buffer() 162 int qemu_chr_write(Chardev *s, const uint8_t *buf, int len, bool write_all) in qemu_chr_write() argument 183 write_all = true; in qemu_chr_write() 186 res = qemu_chr_write_buffer(s, buf, len, &offset, write_all); in qemu_chr_write()
|
/qemu/include/chardev/ |
H A D | char.h | 226 int qemu_chr_write(Chardev *s, const uint8_t *buf, int len, bool write_all);
|
/qemu/rust/hw/char/pl011/src/ |
H A D | device.rs | 565 let _ = self.char_backend.write_all(&ch); in write()
|