Home
last modified time | relevance | path

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

/qemu/tests/unit/
H A Dtest-io-channel-socket.c58 QIOChannelSocket *lioc; in test_io_channel_setup_sync() local
60 lioc = qio_channel_socket_new(); in test_io_channel_setup_sync()
65 lioc, &error_abort); in test_io_channel_setup_sync()
78 qio_channel_wait(QIO_CHANNEL(lioc), G_IO_IN); in test_io_channel_setup_sync()
84 *srv = QIO_CHANNEL(lioc); in test_io_channel_setup_sync()
109 QIOChannelSocket *lioc; in test_io_channel_setup_async() local
115 lioc = qio_channel_socket_new(); in test_io_channel_setup_async()
117 lioc, listen_addr, 1, in test_io_channel_setup_async()
127 lioc, &error_abort); in test_io_channel_setup_async()
146 qio_channel_wait(QIO_CHANNEL(lioc), G_IO_IN); in test_io_channel_setup_async()
[all …]
/qemu/tests/qtest/
H A Dtpm-emu.c97 QIOChannelSocket *lioc = qio_channel_socket_new(); in tpm_emu_ctrl_thread() local
100 qio_channel_socket_listen_sync(lioc, s->addr, 1, &error_abort); in tpm_emu_ctrl_thread()
107 qio_channel_wait(QIO_CHANNEL(lioc), G_IO_IN); in tpm_emu_ctrl_thread()
108 ioc = QIO_CHANNEL(qio_channel_socket_accept(lioc, &error_abort)); in tpm_emu_ctrl_thread()
204 object_unref(OBJECT(lioc)); in tpm_emu_ctrl_thread()