Home
last modified time | relevance | path

Searched refs:qemu_chr_write (Results 1 – 4 of 4) sorted by relevance

/openbmc/qemu/include/chardev/
H A Dchar.h226 int qemu_chr_write(Chardev *s, const uint8_t *buf, int len, bool write_all);
227 #define qemu_chr_write_all(s, buf, len) qemu_chr_write(s, buf, len, true)
/openbmc/qemu/chardev/
H A Dchar-fe.c41 return qemu_chr_write(s, buf, len, false); in qemu_chr_fe_write()
52 return qemu_chr_write(s, buf, len, true); in qemu_chr_fe_write_all()
H A Dchar.c162 int qemu_chr_write(Chardev *s, const uint8_t *buf, int len, bool write_all) in qemu_chr_write() function
/openbmc/qemu/ui/
H A Dconsole-vc.c333 qemu_chr_write(s->chr, (uint8_t *)"\r", 1, true); in qemu_text_console_handle_keysym()
339 qemu_chr_write(s->chr, buf, q - buf, true); in qemu_text_console_handle_keysym()
1012 qemu_chr_write(chr, (uint8_t *)msg, strlen(msg), true); in vc_chr_open()