Home
last modified time | relevance | path

Searched refs:ioc_out (Results 1 – 2 of 2) sorted by relevance

/openbmc/qemu/chardev/
H A Dchar-fd.c41 if (!s->ioc_out) { in fd_chr_write()
45 return io_channel_send(s->ioc_out, buf, len); in fd_chr_write()
154 if (s->ioc_out) { in fd_chr_add_watch()
155 g_autoptr(GSource) child = qio_channel_create_watch(s->ioc_out, cond & ~G_IO_IN); in fd_chr_add_watch()
190 if (s->ioc_out) { in char_fd_finalize()
191 object_unref(OBJECT(s->ioc_out)); in char_fd_finalize()
223 s->ioc_out = QIO_CHANNEL(object_ref(s->ioc_in)); in qemu_chr_open_fd()
234 s->ioc_out = QIO_CHANNEL(qio_channel_file_new_fd(fd_out)); in qemu_chr_open_fd()
237 qio_channel_set_name(QIO_CHANNEL(s->ioc_out), name); in qemu_chr_open_fd()
/openbmc/qemu/include/chardev/
H A Dchar-fd.h34 QIOChannel *ioc_in, *ioc_out; member