Home
last modified time | relevance | path

Searched refs:ioc_in (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/chardev/
H A Dchar-fd.c159 if (s->ioc_in) { in fd_chr_add_watch()
160 g_autoptr(GSource) child = qio_channel_create_watch(s->ioc_in, cond & ~G_IO_OUT); in fd_chr_add_watch()
173 if (s->ioc_in) { in fd_chr_update_read_handler()
174 chr->gsource = io_add_watch_poll(chr, s->ioc_in, in fd_chr_update_read_handler()
187 if (s->ioc_in) { in char_fd_finalize()
188 object_unref(OBJECT(s->ioc_in)); in char_fd_finalize()
220 s->ioc_in = QIO_CHANNEL(qio_channel_file_new_fd(fd_in)); in qemu_chr_open_fd()
222 qio_channel_set_name(QIO_CHANNEL(s->ioc_in), name); in qemu_chr_open_fd()
223 s->ioc_out = QIO_CHANNEL(object_ref(s->ioc_in)); in qemu_chr_open_fd()
228 s->ioc_in = QIO_CHANNEL(qio_channel_file_new_fd(fd_in)); in qemu_chr_open_fd()
[all …]
H A Dchar-serial.c182 QIOChannelFile *fioc = QIO_CHANNEL_FILE(s->ioc_in); in tty_serial_ioctl()
/openbmc/qemu/include/chardev/
H A Dchar-fd.h34 QIOChannel *ioc_in, *ioc_out; member