Lines Matching refs:fioc
115 QIOChannelFile *fioc = QIO_CHANNEL_FILE(ioc); in qio_channel_file_readv() local
119 ret = readv(fioc->fd, iov, niov); in qio_channel_file_readv()
144 QIOChannelFile *fioc = QIO_CHANNEL_FILE(ioc); in qio_channel_file_writev() local
148 ret = writev(fioc->fd, iov, niov); in qio_channel_file_writev()
170 QIOChannelFile *fioc = QIO_CHANNEL_FILE(ioc); in qio_channel_file_preadv() local
174 ret = preadv(fioc->fd, iov, niov, offset); in qio_channel_file_preadv()
196 QIOChannelFile *fioc = QIO_CHANNEL_FILE(ioc); in qio_channel_file_pwritev() local
200 ret = pwritev(fioc->fd, iov, niov, offset); in qio_channel_file_pwritev()
224 QIOChannelFile *fioc = QIO_CHANNEL_FILE(ioc); in qio_channel_file_set_blocking()
226 if (!g_unix_set_fd_nonblocking(fioc->fd, !enabled, NULL)) { in qio_channel_file_set_blocking()
240 QIOChannelFile *fioc = QIO_CHANNEL_FILE(ioc); in qio_channel_file_seek() local
243 ret = lseek(fioc->fd, offset, whence); in qio_channel_file_seek()
257 QIOChannelFile *fioc = QIO_CHANNEL_FILE(ioc); in qio_channel_file_close() local
259 if (qemu_close(fioc->fd) < 0) { in qio_channel_file_close()
264 fioc->fd = -1; in qio_channel_file_close()
276 QIOChannelFile *fioc = QIO_CHANNEL_FILE(ioc); in qio_channel_file_set_aio_fd_handler() local
278 qio_channel_util_set_aio_fd_handler(fioc->fd, read_ctx, io_read, in qio_channel_file_set_aio_fd_handler()
279 fioc->fd, write_ctx, io_write, in qio_channel_file_set_aio_fd_handler()
286 QIOChannelFile *fioc = QIO_CHANNEL_FILE(ioc); in qio_channel_file_create_watch() local
288 fioc->fd, in qio_channel_file_create_watch()