Searched refs:qemu_chr_write (Results 1 – 4 of 4) sorted by relevance
/openbmc/qemu/include/chardev/ |
H A D | char.h | 226 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 D | char-fe.c | 41 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 D | char.c | 162 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 D | console-vc.c | 333 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()
|